FFMpegCore/FFMpegCore/FFMpeg/Arguments/IArgument.cs
Malte Rosenbjerg 4f3d2c1fda Move to separate files
Former-commit-id: 552b5d811a
2020-06-18 21:36:59 +02:00

10 lines
No EOL
209 B
C#

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