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 Prices { get; set; } public string Detail { get; set; } } public class ProjectPrice { public ProjectPrice(string title,string price) { Title = title; Price = price; } public string Title { get; set; } public string Price { get; set; } } }