123456789101112131415161718192021 |
- namespace Vinno.FIS.Sonopost.Settings.Config
- {
- internal class DicomSetting
- {
- public bool UseDicomService { get; set; }
- public string DicomTitile { get; set; }
- public int DicomPort { get; set; }
- public int TempFileDays { get; set; }
- public bool UseWorkStationProxy { get; set; }
- public string WorkStationTitle { get; set; }
- public string WorkStationIpAddress { get; set; }
- public int WorkStationPort { get; set; }
- }
- }
|