ProjectSpecOutput.cs 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using ZhonTai.Admin.Services.Project.Dto;
  7. namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
  8. {
  9. public class ProjectSpecOutput
  10. {
  11. public ProjectSpecOutput()
  12. {
  13. }
  14. public ProjectSpecOutput(long id, string videoUrl,string detail)
  15. {
  16. Id = id;
  17. VideoUrl = videoUrl;
  18. Detail = detail;
  19. }
  20. public long Id { get; set; }
  21. public string VideoUrl { get; set; }
  22. public List<ProjectPrice> Prices { get; set; }
  23. public string Detail { get; set; }
  24. }
  25. public class ProjectPrice
  26. {
  27. public ProjectPrice(long id, string title,string price)
  28. {
  29. Id = id;
  30. Title = title;
  31. Price = price;
  32. }
  33. public long Id { get; set; }
  34. public string Title { get; set; }
  35. public string Price { get; set; }
  36. }
  37. }