PeisWorklistItem.cs 882 B

1234567891011121314151617181920212223242526272829
  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 DateTime SCHEDULED_DATE_TIME {get; set;}
  13. public string DATE_OF_BIRTH {get; set;}
  14. public string EXAM_NO {get; set;}
  15. public string PATIENT_ID {get; set;}
  16. public string PATIENT_LOCAL_ID {get; set;}
  17. public string STUDY_INSTANCE_UID {get; set;}
  18. public string NAME_PHONETIC {get; set;}
  19. public string PATIENT_NAME {get; set;}
  20. public string PATIENT_AGE {get; set;}
  21. public string PATIENT_SEX {get; set;}
  22. public string Patient_Weight {get; set;}
  23. }
  24. }