|
@@ -9,6 +9,18 @@ namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
|
|
{
|
|
{
|
|
public class ProjectSpecOutput
|
|
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 string VideoUrl { get; set; }
|
|
public List<ProjectPrice> Prices { get; set; }
|
|
public List<ProjectPrice> Prices { get; set; }
|
|
public string Detail { get; set; }
|
|
public string Detail { get; set; }
|