using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common.Library.DataLayer.DTO.Websites.DMCDynamics.LLC { public class AboutCompanyDTO { public int AboutCompanyID { get; set; } public string AboutHeader { get; set; } public string AboutDescription { get; set; } public bool IsVisible { get; set; } public string CSS { get; set; } public string ImagePath { get; set; } } public class AboutCompanyDTOCollection : List { } }