FFMpegCore/FFMpegCore.Extensions.Downloader/Models/VersionInfo.cs

13 lines
348 B
C#
Raw Normal View History

2025-01-27 22:22:47 -05:00
using System.Text.Json.Serialization;
namespace FFMpegCore.Extensions.Downloader.Models;
internal record VersionInfo
{
2025-01-27 22:30:22 -05:00
[JsonPropertyName("version")] public string? Version { get; set; }
2025-01-27 22:22:47 -05:00
2025-01-27 22:30:22 -05:00
[JsonPropertyName("permalink")] public string? Permalink { get; set; }
2025-01-27 22:22:47 -05:00
2025-01-27 22:30:22 -05:00
[JsonPropertyName("bin")] public BinaryInfo? BinaryInfo { get; set; }
2025-01-27 22:22:47 -05:00
}