Consolidate metadata properties into one record

This commit is contained in:
Yoshi Askharoun
2024-05-21 20:14:57 -05:00
parent 249681c7bd
commit d357711b91
9 changed files with 48 additions and 62 deletions
+4 -6
View File
@@ -34,14 +34,12 @@ public class WebservicesMod : Mod, IAsyncInit
private HttpClient _client;
private CancellationTokenSource _cts = new();
public override string Id => nameof(WebservicesMod);
public override string Title => "Community Webservices";
public override string Description => "Partially restores online features such as the Marketplace by patching the Zune desktop software " +
private const string Description = "Partially restores online features such as the Marketplace by patching the Zune desktop software " +
"to use the community's recreation of Microsoft's Zune servers at zunes.me (instead of zune.net).";
public override string Author => "Joshua \"Yoshi\" Askharoun";
private const string Author = "Joshua \"Yoshi\" Askharoun";
public override ModMetadata Metadata => new(nameof(WebservicesMod), "Community Webservices", Description, Author);
public override AbstractUICollection? GetDefaultOptionsUI()
{