21 lines
553 B
C#
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; }
|
|
}
|
|
}
|