You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
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<AboutCompanyDTO> { }
|
|
|
|
|
}
|