using System.Collections.Generic; namespace Common.Library.DataLayer.DTO.Websites.DMCDynamics.LLC { public class ServicesDTO { public int ServiceID { get; set; } public string ServiceName { get; set; } public string ServiceTags { get; set; } public string FontAwesomeIcon { get; set; } public bool IsEnabled { get; set; } } public class ServicesDTOCollection : List {} }