28 lines
673 B

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 ContactDTO Contact = new ContactDTO();
public ProviderDTO Provider = new ProviderDTO();
public DateTime? ServiceStartDate { get; set; }
public DateTime? ServiceEndDate { get; set; }
}
}