15 lines
369 B
C#
15 lines
369 B
C#
using System;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class Apoplexy_PatientsTimeAxis
|
|
{
|
|
public string Guid { get; set; }
|
|
public string Name { get; set; }
|
|
public string Gender { get; set; }
|
|
public int Age { get; set; }
|
|
public string TimeName { get; set; }
|
|
public DateTime CreatorTime { get; set; }
|
|
}
|
|
}
|