We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b7ad2c commit 33005e6Copy full SHA for 33005e6
1 file changed
GameFrameX.StartUp/Options/LauncherOptions.cs
@@ -420,16 +420,16 @@ public sealed class LauncherOptions
420
/// <summary>
421
/// 客户端API地址
422
/// </summary>
423
- [Option(nameof(ClientApiUrl), Description = "客户端API地址")]
+ [Option(nameof(ClientApiHost), Description = "客户端API地址")]
424
[DefaultValue("")]
425
- public string ClientApiUrl { get; set; }
+ public string ClientApiHost { get; set; }
426
427
428
/// HubAPI地址
429
430
- [Option(nameof(HubApiUrl), Description = "HubAPI地址")]
+ [Option(nameof(HubApiHost), Description = "HubAPI地址")]
431
432
- public string HubApiUrl { get; set; }
+ public string HubApiHost { get; set; }
433
434
435
/// 心跳间隔(毫秒),默认 5000 毫秒
0 commit comments