namespace HL_FristAidPlatform_Models { /// /// 院前评分 /// public class TraumaPatientFirstAidScoreModel { /// /// GCS评分 /// public int GCSCount { get; set; } /// /// PHICount评分 /// public int PHICount { get; set; } /// /// RTS评分 /// public int RTSCount { get; set; } /// /// MEMS评分 /// public int MEMSCount { get; set; } } }