mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-02-18 11:02:31 +00:00
16 lines
363 B
C#
16 lines
363 B
C#
![]() |
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace FFMpegCore.Extensions.Downloader.Models;
|
|||
|
|
|||
|
internal record VersionInfo
|
|||
|
{
|
|||
|
[JsonPropertyName("version")]
|
|||
|
public string? Version { get; set; }
|
|||
|
|
|||
|
[JsonPropertyName("permalink")]
|
|||
|
public string? Permalink { get; set; }
|
|||
|
|
|||
|
[JsonPropertyName("bin")]
|
|||
|
public BinaryInfo? BinaryInfo { get; set; }
|
|||
|
}
|