mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 08:56:24 +02:00
20 lines
583 B
C#
20 lines
583 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Common.Models.GitLab
|
|
{
|
|
public class GitLabReleaseAssetJsonResponse
|
|
{
|
|
[JsonPropertyName("links")]
|
|
public GitLabReleaseAssetLinkJsonResponse[] Links { get; set; }
|
|
|
|
public class GitLabReleaseAssetLinkJsonResponse
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public long Id { get; set; }
|
|
[JsonPropertyName("name")]
|
|
public string AssetName { get; set; }
|
|
[JsonPropertyName("url")]
|
|
public string Url { get; set; }
|
|
}
|
|
}
|
|
}
|