13 lines
245 B
C#
13 lines
245 B
C#
|
namespace HL_FristAidPlatform_DTO.EcgInterface
|
|||
|
{
|
|||
|
class DW_CreateUser
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 病人姓名
|
|||
|
/// </summary>
|
|||
|
public string name { get; set; }
|
|||
|
|
|||
|
public string gender { get; set; }
|
|||
|
}
|
|||
|
}
|