32 lines
676 B
C#
32 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_XinWei.Commons.Dto.Open
|
|
{
|
|
public class ProjectVo
|
|
{
|
|
/// <summary>
|
|
/// 项目类型(1-跳绳,2-跑步)
|
|
/// </summary>
|
|
public int? ProjectKind { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目ID
|
|
/// </summary>
|
|
public int? ProjectId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目名称
|
|
/// </summary>
|
|
public string ProjectName { get; set; }
|
|
|
|
/// <summary>
|
|
/// ModelType
|
|
/// </summary>
|
|
public int ModelType { get; set; }
|
|
}
|
|
}
|