File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
src/libs/AutoSDK.CSharp/Sources Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,13 @@ namespace {settings.Namespace}
1717 /// </summary>
1818 public sealed class AutoSDKServer
1919 {{
20+ /// <summary>
21+ /// Initializes a new instance of the <see cref=""AutoSDKServer""/> class.
22+ /// </summary>
23+ /// <param name=""id"">The stable identifier for this server option.</param>
24+ /// <param name=""name"">The display name for this server option.</param>
25+ /// <param name=""url"">The server URL.</param>
26+ /// <param name=""description"">The server description.</param>
2027 public AutoSDKServer(
2128 string id,
2229 string name,
@@ -30,10 +37,25 @@ public AutoSDKServer(
3037 Uri = new global::System.Uri(url, global::System.UriKind.RelativeOrAbsolute);
3138 }}
3239
40+ /// <summary>
41+ /// Gets the stable identifier for this server option.
42+ /// </summary>
3343 public string Id {{ get; }}
44+ /// <summary>
45+ /// Gets the display name for this server option.
46+ /// </summary>
3447 public string Name {{ get; }}
48+ /// <summary>
49+ /// Gets the server URL.
50+ /// </summary>
3551 public string Url {{ get; }}
52+ /// <summary>
53+ /// Gets the server description.
54+ /// </summary>
3655 public string Description {{ get; }}
56+ /// <summary>
57+ /// Gets the parsed server URI.
58+ /// </summary>
3759 public global::System.Uri Uri {{ get; }}
3860 }}
3961
You can’t perform that action at this time.
0 commit comments