mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
Remove accessibility modifiers on interface properties (IDE0040)
This commit is contained in:
parent
abb9f15eeb
commit
918ca9a9ab
2 changed files with 3 additions and 3 deletions
|
|
@ -8,6 +8,6 @@
|
||||||
/// <param name="context"></param>
|
/// <param name="context"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
//public string GetText(StringBuilder context);
|
//public string GetText(StringBuilder context);
|
||||||
public string GetText(IEnumerable<IArgument> context);
|
string GetText(IEnumerable<IArgument> context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,8 +36,8 @@ namespace FFMpegCore.Arguments
|
||||||
|
|
||||||
public interface IVideoFilterArgument
|
public interface IVideoFilterArgument
|
||||||
{
|
{
|
||||||
public string Key { get; }
|
string Key { get; }
|
||||||
public string Value { get; }
|
string Value { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class VideoFilterOptions
|
public class VideoFilterOptions
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue