We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b78906 commit b1a4f1aCopy full SHA for b1a4f1a
src/JsonApiDotNetCore/Models/AttrAttribute.cs
@@ -11,6 +11,12 @@ public AttrAttribute(string publicName)
11
PublicAttributeName = publicName;
12
}
13
14
+ public AttrAttribute(string publicName, string internalName)
15
+ {
16
+ PublicAttributeName = publicName;
17
+ InternalAttributeName = internalName;
18
+ }
19
+
20
public string PublicAttributeName { get; set; }
21
public string InternalAttributeName { get; set; }
22
0 commit comments