mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-06 14:41:08 +00:00
20 lines
628 B
C#
20 lines
628 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Common.Models.GitLab
|
|
{
|
|
public class GitLabReleasesJsonResponse
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonPropertyName("tag_name")]
|
|
public string TagName { get; set; }
|
|
|
|
[JsonPropertyName("assets")]
|
|
public GitLabReleaseAssetJsonResponse Assets { get; set; }
|
|
}
|
|
|
|
[JsonSerializable(typeof(GitLabReleasesJsonResponse), GenerationMode = JsonSourceGenerationMode.Metadata)]
|
|
public partial class GitLabReleasesJsonSerializerContext : JsonSerializerContext;
|
|
}
|