WebSetting.cs 231 B

1234567891011
  1. namespace Vinno.FIS.Sonopost.Settings.Config
  2. {
  3. internal class WebSetting
  4. {
  5. public int WebPort { get; set; }
  6. public int WebPortStandby { get; set; }
  7. public int WebSocketPort { get; set; }
  8. }
  9. }