29 lines
627 B
C#
29 lines
627 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace YD_AllHeartRates.Commons.Dto.Common
|
|||
|
{
|
|||
|
public class ProjectModeDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Id
|
|||
|
/// </summary>
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ProjectKind
|
|||
|
/// </summary>
|
|||
|
public int ProjectKind { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///名称
|
|||
|
/// </summary>
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|