mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
21 lines
550 B
C#
21 lines
550 B
C#
namespace Bloxstrap.Models.APIs.GitHub
|
|
{
|
|
public class GithubRelease
|
|
{
|
|
[JsonPropertyName("tag_name")]
|
|
public string TagName { get; set; } = null!;
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; } = null!;
|
|
|
|
[JsonPropertyName("body")]
|
|
public string Body { get; set; } = null!;
|
|
|
|
[JsonPropertyName("created_at")]
|
|
public string CreatedAt { get; set; } = null!;
|
|
|
|
[JsonPropertyName("assets")]
|
|
public List<GithubReleaseAsset>? Assets { get; set; }
|
|
}
|
|
}
|