Remove accessibility modifiers on interface properties (IDE0040)

This commit is contained in:
Malte Rosenbjerg 2025-10-16 09:22:09 +02:00
parent abb9f15eeb
commit 918ca9a9ab
2 changed files with 3 additions and 3 deletions

View file

@ -8,6 +8,6 @@
/// <param name="context"></param>
/// <returns></returns>
//public string GetText(StringBuilder context);
public string GetText(IEnumerable<IArgument> context);
string GetText(IEnumerable<IArgument> context);
}
}

View file

@ -36,8 +36,8 @@ namespace FFMpegCore.Arguments
public interface IVideoFilterArgument
{
public string Key { get; }
public string Value { get; }
string Key { get; }
string Value { get; }
}
public class VideoFilterOptions