NotificationSettings.cs 289 B

1234567891011121314
  1. namespace WingServerCommon.Config
  2. {
  3. /// <summary>
  4. /// 通知设置
  5. /// </summary>
  6. public class NotificationSettings
  7. {
  8. /// <summary>
  9. /// 监听端口
  10. /// </summary>
  11. /// <value></value>
  12. public int Port { get; set; } = 8992;
  13. }
  14. }