18 lines
352 B
C#
18 lines
352 B
C#
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class FirstAidUserModel
|
|
{
|
|
public string GUID { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public int Gender { get; set; }
|
|
|
|
public string PositionName { get; set; }
|
|
|
|
public int State { get; set; }
|
|
|
|
public string PalteNumber { get; set; }
|
|
}
|
|
}
|