mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
13 lines
255 B
C#
13 lines
255 B
C#
namespace FFMpegCore.Arguments;
|
|
|
|
public class CustomArgument : IArgument
|
|
{
|
|
public readonly string Argument;
|
|
|
|
public CustomArgument(string argument)
|
|
{
|
|
Argument = argument;
|
|
}
|
|
|
|
public string Text => Argument ?? string.Empty;
|
|
}
|