Files
se-launcher/NuGet/Models/Registration.cs
2024-10-22 21:40:32 +07:00

6 lines
245 B
C#

using System.Text.Json.Serialization;
namespace NuGet.Models;
public record Registration([property: JsonPropertyName("catalogEntry")] string CatalogEntryUrl,
[property: JsonPropertyName("sleet:catalogEntry")] CatalogEntry? SleetEntry);