mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
16 lines
408 B
C#
16 lines
408 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Shared.Models.Github;
|
|
|
|
public sealed class GithubReleaseAsset
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public required string Name { get; init; }
|
|
|
|
[JsonPropertyName("content_type")]
|
|
public required string ContentType { get; init; }
|
|
|
|
[JsonPropertyName("browser_download_url")]
|
|
public required string BrowserDownloadUrl { get; init; }
|
|
}
|