Skip to content

Commit 02d6510

Browse files
authored
make attr constructor public
unnecessary breaking change
1 parent f4a7ff1 commit 02d6510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsonApiDotNetCore/Models/AttrAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public AttrAttribute(string publicName, bool isImmutable = false, bool isFiltera
3333
IsSortable = isSortable;
3434
}
3535

36-
internal AttrAttribute(string publicName, string internalName, bool isImmutable = false)
36+
public AttrAttribute(string publicName, string internalName, bool isImmutable = false)
3737
{
3838
PublicAttributeName = publicName;
3939
InternalAttributeName = internalName;

0 commit comments

Comments
 (0)