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.

25 lines
583 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 DateTime? ServiceStartDate { get; set; }
  17. public DateTime? ServiceEndDate { get; set; }
  18. public List<string> DescriptionList = new List<string>();
  19. }
  20. }