mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 04:36:23 +02:00
19 lines
628 B
C#
19 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;
|
|
}
|