PeisWorklistItem.cs 926 B

123456789101112131415161718192021222324252627282930
  1. // Copyright (c) 2012-2020 fo-dicom contributors.
  2. // Licensed under the Microsoft Public License (MS-PL).
  3. using System;
  4. namespace Worklist_SCP.Model
  5. {
  6. /// <summary>
  7. /// This class contains the most important values that are transmitted per worklist
  8. /// </summary>
  9. [Serializable]
  10. public class PeisWorklistItem
  11. {
  12. public string REQ_MEMO {get; set;}
  13. public DateTime SCHEDULED_DATE_TIME {get; set;}
  14. public string DATE_OF_BIRTH {get; set;}
  15. public string EXAM_NO {get; set;}
  16. public string PATIENT_ID {get; set;}
  17. public string PATIENT_LOCAL_ID {get; set;}
  18. public string STUDY_INSTANCE_UID {get; set;}
  19. public string NAME_PHONETIC {get; set;}
  20. public string PATIENT_NAME {get; set;}
  21. public string PATIENT_AGE {get; set;}
  22. public string PATIENT_SEX {get; set;}
  23. public string Patient_Weight {get; set;}
  24. }
  25. }