WorklistItem.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 WorklistItem
  11. {
  12. public string HospitalId { get; set; }
  13. public string AccessionNumber { get; set; }
  14. public string PatientID { get; set; }
  15. public string Surname { get; set; }
  16. public string Name { get; set; }
  17. public string Forename { get; set; }
  18. public string Title { get; set; }
  19. public string Sex { get; set; }
  20. public DateTime DateOfBirth { get; set; }
  21. public string ReferringPhysician { get; set; }
  22. public string PerformingPhysician { get; set; }
  23. public string Modality { get; set; }
  24. public DateTime ExamDateAndTime { get; set; }
  25. public string ExamRoom { get; set; }
  26. public string ExamDescription { get; set; }
  27. public string StudyUID { get; set; }
  28. public string ProcedureID { get; set; }
  29. public string ProcedureStepID { get; set; }
  30. public string HospitalName { get; set; }
  31. public string ScheduledAET { get; set; }
  32. }
  33. }