Skip to content

Commit 7b4a132

Browse files
authored
fix: make StringValue public and inherit Value (#422)
1 parent ec946b7 commit 7b4a132

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OSLC4Net_SDK/OSLC4Net.Core.Query/StringValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
namespace OSLC4Net.Core.Query;
1717

1818
/// <summary>
19-
/// String literal operand from olsc.where clause
19+
/// String literal operand from oslc.where clause
2020
/// </summary>
21-
interface StringValue
21+
public interface StringValue : Value
2222
{
2323
string Value { get; }
2424
}

0 commit comments

Comments
 (0)