Files

13 lines
493 B
C#
Raw Permalink Normal View History

2026-02-04 08:58:36 +08:00
using System.Text.Json.Serialization;
namespace FCPModUpdater.Models;
public record RemoteRepo(
[property: JsonPropertyName("name")] string Name,
[property: JsonPropertyName("clone_url")] string CloneUrl,
[property: JsonPropertyName("default_branch")] string DefaultBranch,
[property: JsonPropertyName("description")] string? Description,
[property: JsonPropertyName("html_url")] string HtmlUrl,
[property: JsonPropertyName("topics")] IReadOnlyList<string> Topics
2026-02-04 08:58:36 +08:00
);