1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using ZhonTai.Admin.Services.Project.Dto;
- namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
- {
- public class ProjectSpecOutput
- {
- public ProjectSpecOutput()
- {
- }
- public ProjectSpecOutput(long id, string videoUrl,string detail)
- {
- Id = id;
- VideoUrl = videoUrl;
- Detail = detail;
- }
- public long Id { get; set; }
- public string VideoUrl { get; set; }
- public List<ProjectPrice> Prices { get; set; }
- public string Detail { get; set; }
- }
- public class ProjectPrice
- {
- public ProjectPrice(long id, string title,string price)
- {
- Id = id;
- Title = title;
- Price = price;
- }
- public long Id { get; set; }
- public string Title { get; set; }
- public string Price { get; set; }
- }
- }
|