mirror of
https://github.com/FalloutCollaborationProject/FCP-Mod-Updater.git
synced 2026-07-27 17:04:05 -07:00
13 lines
493 B
C#
13 lines
493 B
C#
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
|
|
);
|