mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
14 lines
No EOL
301 B
C#
14 lines
No EOL
301 B
C#
namespace FFMpegCore.FFMPEG.Argument
|
|
{
|
|
public class CustomArgument : Argument<string>
|
|
{
|
|
public CustomArgument(string argument) : base(argument)
|
|
{
|
|
}
|
|
|
|
public override string GetStringValue()
|
|
{
|
|
return Value ?? string.Empty;
|
|
}
|
|
}
|
|
} |