StableVersion4.3/HL_FristAidPlatform_Help/T_Service_EnshrineModel.cs

36 lines
762 B
C#

using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 我的收藏
/// </summary>
public class T_Service_EnshrineModel : T_Service_Enshrine
{
/// <summary>
/// 真实姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 性别
/// </summary>
public int Gender { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
/// <summary>
/// 年龄
/// </summary>
public string Age_Unit { get; set; }
/// <summary>
/// 病历内容
/// </summary>
public string Content { get; set; }
}
}