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