mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
Only things left to implement are updating for ReShade/Extravi's presets, credits, and hopefully some bug fixes.
29 lines
634 B
C#
29 lines
634 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class GithubCommits
|
|
{
|
|
[JsonPropertyName("assets")]
|
|
public List<GithubCommit>? Commits { get; set; }
|
|
}
|
|
|
|
public class GithubCommit
|
|
{
|
|
[JsonPropertyName("commit")]
|
|
public GithubCommitData Commit { get; set; } = null!;
|
|
}
|
|
|
|
public class GithubCommitData
|
|
{
|
|
[JsonPropertyName("author")]
|
|
public GithubCommitAuthor Author { get; set; } = null!;
|
|
}
|
|
|
|
public class GithubCommitAuthor
|
|
{
|
|
[JsonPropertyName("date")]
|
|
public string Date { get; set; } = null!;
|
|
}
|
|
}
|