mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-02-18 11:02:31 +00:00
12 lines
338 B
C#
12 lines
338 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace FFMpegCore.Extensions.Downloader.Models;
|
|
|
|
internal record DownloadInfo
|
|
{
|
|
[JsonPropertyName("ffmpeg")] public string? FFMpeg { get; set; }
|
|
|
|
[JsonPropertyName("ffprobe")] public string? FFProbe { get; set; }
|
|
|
|
[JsonPropertyName("ffplay")] public string? FFPlay { get; set; }
|
|
}
|