using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZhonTai.Admin.Services.DiTuiAPI.Dto { public class ProjectDescOutput { public ProjectDescOutput() { } public ProjectDescOutput(long id, string logo, string name,string price, string settleDay, string description) { Id = id; Logo = logo; Name = name; Price = price; SettleDay = settleDay; Description = description; } /// /// ID /// public long Id { get; set; } /// /// 图标 /// public string Logo { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 价格 /// public string Price { get; set; } /// /// 结算周期 /// public string SettleDay { get; set; } /// /// 项目详情 /// public string Description { get; set; } } }