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

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