FFMpegCore/FFMpegCore/FFMpeg/Arguments/IArgument.cs
2025-10-16 12:38:57 +02:00

9 lines
184 B
C#

namespace FFMpegCore.Arguments;
public interface IArgument
{
/// <summary>
/// The textual representation of the argument
/// </summary>
string Text { get; }
}