You can not 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 Entity.Sugar; using Entity.ViewModels; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Entity.ShowEasyDtos { public class OnSiteServiceDTO { public string ServiceID { get; set; } public string ServiceName { get; set; } public string Logo { get; set; } public string BoothNo { get; set; }
public List<string> SubCategoryIDs = new List<string>();
public ContactDTO Contact = new ContactDTO();
public ProviderDTO Provider = new ProviderDTO(); public DateTime? ServiceStartDate { get; set; } public DateTime? ServiceEndDate { get; set; }
}
}
|