mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-15 02:25:44 +00:00
9 lines
184 B
C#
9 lines
184 B
C#
namespace FFMpegCore.Arguments;
|
|
|
|
public interface IArgument
|
|
{
|
|
/// <summary>
|
|
/// The textual representation of the argument
|
|
/// </summary>
|
|
string Text { get; }
|
|
}
|