video/Patient.cs
2024-12-11 19:48:43 +08:00

21 lines
553 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace videoGather
{
internal class Patient
{
public string PatientID { get; set; }
public string PatientNam { get; set; }
public string PatientBir { get; set; }
public string PatientSex { get; set; }
public string OrgId { get; set; }
public string OrgName { get; set; }
public string StudyDate { get; set; }
public List<Study> Studies { get; set; }
}
}