File tree 2 files changed +2
-2
lines changed
src/JsonApiDotNetCore/Resources/Annotations
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public sealed class HasManyAttribute : RelationshipAttribute
26
26
/// <summary>
27
27
/// Inspects <see cref="RelationshipAttribute.InverseNavigationProperty" /> to determine if this is a many-to-many relationship.
28
28
/// </summary>
29
- public bool IsManyToMany => _lazyIsManyToMany . Value ;
29
+ internal bool IsManyToMany => _lazyIsManyToMany . Value ;
30
30
31
31
public HasManyAttribute ( )
32
32
{
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public sealed class HasOneAttribute : RelationshipAttribute
25
25
/// <summary>
26
26
/// Inspects <see cref="RelationshipAttribute.InverseNavigationProperty" /> to determine if this is a one-to-one relationship.
27
27
/// </summary>
28
- public bool IsOneToOne => _lazyIsOneToOne . Value ;
28
+ internal bool IsOneToOne => _lazyIsOneToOne . Value ;
29
29
30
30
public HasOneAttribute ( )
31
31
{
You can’t perform that action at this time.
0 commit comments