mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-18 12:36:44 +00:00
Update MultiInput to IEnumerable
This commit is contained in:
parent
8a764eccc7
commit
8f6d1aa8e9
1 changed files with 3 additions and 3 deletions
|
@ -6,15 +6,15 @@
|
||||||
public class MultiInputArgument : IInputArgument
|
public class MultiInputArgument : IInputArgument
|
||||||
{
|
{
|
||||||
public readonly bool VerifyExists;
|
public readonly bool VerifyExists;
|
||||||
public readonly string[] FilePaths;
|
public readonly IEnumerable<string> FilePaths;
|
||||||
|
|
||||||
public MultiInputArgument(bool verifyExists, params string[] filePaths)
|
public MultiInputArgument(bool verifyExists, IEnumerable<string> filePaths)
|
||||||
{
|
{
|
||||||
VerifyExists = verifyExists;
|
VerifyExists = verifyExists;
|
||||||
FilePaths = filePaths;
|
FilePaths = filePaths;
|
||||||
}
|
}
|
||||||
|
|
||||||
public MultiInputArgument(string[] filePaths, bool verifyExists) : this(verifyExists, filePaths) { }
|
public MultiInputArgument(IEnumerable<string> filePaths, bool verifyExists) : this(verifyExists, filePaths) { }
|
||||||
|
|
||||||
public void Pre()
|
public void Pre()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue