11 lines
198 B
C#
11 lines
198 B
C#
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class UserUpdateSateDTO
|
|||
|
{
|
|||
|
public string GUID { get; set; }
|
|||
|
|
|||
|
//0不出车 1出车
|
|||
|
public int Type { get; set; }
|
|||
|
}
|
|||
|
}
|