123456789101112131415161718192021222324252627282930 |
- // Copyright (c) 2012-2020 fo-dicom contributors.
- // Licensed under the Microsoft Public License (MS-PL).
- using System;
- namespace Worklist_SCP.Model
- {
- /// <summary>
- /// This class contains the most important values that are transmitted per worklist
- /// </summary>
- [Serializable]
- public class PeisWorklistItem
- {
- public string REQ_MEMO {get; set;}
- public DateTime SCHEDULED_DATE_TIME {get; set;}
- public string DATE_OF_BIRTH {get; set;}
- public string EXAM_NO {get; set;}
- public string PATIENT_ID {get; set;}
- public string PATIENT_LOCAL_ID {get; set;}
- public string STUDY_INSTANCE_UID {get; set;}
- public string NAME_PHONETIC {get; set;}
- public string PATIENT_NAME {get; set;}
- public string PATIENT_AGE {get; set;}
- public string PATIENT_SEX {get; set;}
- public string Patient_Weight {get; set;}
- }
- }
|