File tree Expand file tree Collapse file tree
GameFrameX.StartUp/Options
GameFrameX.Utility/Setting Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -310,6 +310,27 @@ public sealed class LauncherOptions
310310 [ GrafanaLokiLabelTag ]
311311 public string TagName { get ; set ; }
312312
313+ /// <summary>
314+ /// 描述信息
315+ /// </summary>
316+ [ Option ( nameof ( Description ) , Default = "" , HelpText = "描述信息" ) ]
317+ [ GrafanaLokiLabelTag ]
318+ public string Description { get ; set ; }
319+
320+ /// <summary>
321+ /// 备注信息
322+ /// </summary>
323+ [ Option ( nameof ( Note ) , Default = "" , HelpText = "备注信息" ) ]
324+ [ GrafanaLokiLabelTag ]
325+ public string Note { get ; set ; }
326+
327+ /// <summary>
328+ /// 标签信息
329+ /// </summary>
330+ [ Option ( nameof ( Label ) , Default = "" , HelpText = "标签信息" ) ]
331+ [ GrafanaLokiLabelTag ]
332+ public string Label { get ; set ; }
333+
313334 /// <summary>
314335 /// 检查APM监控端口
315336 /// </summary>
Original file line number Diff line number Diff line change @@ -328,5 +328,20 @@ public string ToFormatString()
328328 /// </summary>
329329 public short MaxModuleId { get ; set ; }
330330
331+ /// <summary>
332+ /// 描述信息
333+ /// </summary>
334+ public string Description { get ; set ; }
335+
336+ /// <summary>
337+ /// 备注信息
338+ /// </summary>
339+ public string Note { get ; set ; }
340+
341+ /// <summary>
342+ /// 标签信息
343+ /// </summary>
344+ public string Label { get ; set ; }
345+
331346 #endregion
332347}
You can’t perform that action at this time.
0 commit comments