ProjectSpecOutput.cs 928 B

123456789101112131415161718192021222324252627282930313233343536373839
  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(string title,string price)
  28. {
  29. Title = title;
  30. Price = price;
  31. }
  32. public string Title { get; set; }
  33. public string Price { get; set; }
  34. }
  35. }