mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-19 13:06:44 +00:00
9434715fba
Former-commit-id: 010e9947e9
10 lines
No EOL
223 B
C#
10 lines
No EOL
223 B
C#
using System.Collections.Generic;
|
|
using FFMpegCore.Arguments;
|
|
|
|
namespace FFMpegCore
|
|
{
|
|
public abstract class FFMpegOptionsBase
|
|
{
|
|
internal readonly List<IArgument> Arguments = new List<IArgument>();
|
|
}
|
|
} |