video/Patient.cs

21 lines
553 B
C#
Raw Permalink Normal View History

2024-12-11 19:48:43 +08:00
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; }
}
}