mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-02-18 11:02:31 +00:00
12 lines
348 B
C#
12 lines
348 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; }
|
|
}
|