DicomSetting.cs 502 B

123456789101112131415161718192021
  1. namespace Vinno.FIS.Sonopost.Settings.Config
  2. {
  3. internal class DicomSetting
  4. {
  5. public bool UseDicomService { get; set; }
  6. public string DicomTitile { get; set; }
  7. public int DicomPort { get; set; }
  8. public int TempFileDays { get; set; }
  9. public bool UseWorkStationProxy { get; set; }
  10. public string WorkStationTitle { get; set; }
  11. public string WorkStationIpAddress { get; set; }
  12. public int WorkStationPort { get; set; }
  13. }
  14. }