Remove accessibility modifiers on interface

This commit is contained in:
Malte Rosenbjerg 2025-10-16 15:17:19 +02:00
parent 0956870875
commit b10cf5fd76

View file

@ -59,8 +59,8 @@ public class OutputSegmentArgument : IOutputArgument
public interface ISegmentArgument
{
public string Key { get; }
public string Value { get; }
string Key { get; }
string Value { get; }
}
public class SegmentArgumentOptions