DicomStationSettingModel.cs 276 B

12345678910
  1. namespace Vinno.FIS.Sonopost.WebApi.Models
  2. {
  3. internal class DicomStationSettingModel
  4. {
  5. public bool IsEnable { get; set; }
  6. public string Title { get; set; }
  7. public string Port { get; set; }
  8. public string Address { get; set; }
  9. }
  10. }