Skip to content

Commit a6aec8a

Browse files
author
Bart Koelman
committed
Corrected members order (relationships below attributes)
1 parent 6dd52cb commit a6aec8a

File tree

1 file changed

+3
-3
lines changed
  • test/JsonApiDotNetCoreExampleTests/IntegrationTests/AtomicOperations

1 file changed

+3
-3
lines changed

test/JsonApiDotNetCoreExampleTests/IntegrationTests/AtomicOperations/Lyric.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ public sealed class Lyric : Identifiable<long>
1414
[Attr]
1515
public string Text { get; set; }
1616

17-
[HasOne]
18-
public TextLanguage Language { get; set; }
19-
2017
[Attr(Capabilities = AttrCapabilities.None)]
2118
public DateTimeOffset CreatedAt { get; set; }
2219

20+
[HasOne]
21+
public TextLanguage Language { get; set; }
22+
2323
[HasOne]
2424
public MusicTrack Track { get; set; }
2525
}

0 commit comments

Comments
 (0)