FFMpegCore/FFMpegCore.Extensions.Downloader/Models/VersionInfo.cs
2025-01-27 22:22:47 -05:00

15 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; }
}