|
@@ -3,14 +3,25 @@ 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 string VideoUrl { get; set; }
|
|
|
- public Dictionary<string,string> Prices { get; set; }
|
|
|
+ public List<ProjectPrice> 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; }
|
|
|
+ }
|
|
|
|
|
|
}
|