17 lines
566 B
C#
17 lines
566 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class ChestPainUnitDTO
|
|
{
|
|
public T_Service_PatientDTO t_Service_Patient { get; set; }
|
|
public T_Service_ChestPain_FirstAIDInfoDTO T_Service_ChestPain_FirstAIDInfo { get; set; }
|
|
public T_Service_ChestPain_TreatmentInfoDTO t_Service_ChestPain_TreatmentInfo { get; set; }
|
|
public T_Service_ChestPain_OutComeInfoDTO T_Service_ChestPain_OutComeInfo { get; set; }
|
|
}
|
|
}
|