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.

30 lines
739 B

  1. using Entity.Sugar;
  2. using Entity.ViewModels;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Entity.ShowEasyDtos
  10. {
  11. public class OnSiteServiceDTO
  12. {
  13. public string ServiceID { get; set; }
  14. public string ServiceName { get; set; }
  15. public string Logo { get; set; }
  16. public string BoothNo { get; set; }
  17. public List<string> SubCategoryIDs = new List<string>();
  18. public ContactDTO Contact = new ContactDTO();
  19. public ProviderDTO Provider = new ProviderDTO();
  20. public DateTime? ServiceStartDate { get; set; }
  21. public DateTime? ServiceEndDate { get; set; }
  22. }
  23. }