File tree 1 file changed +2
-4
lines changed
src/JsonApiDotNetCore/Internal
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,7 @@ public class ContextEntity
11
11
/// <summary>
12
12
/// The exposed resource name
13
13
/// </summary>
14
- public string EntityName {
15
- get ;
16
- set ; }
14
+ public string EntityName { get ; set ; }
17
15
18
16
/// <summary>
19
17
/// The data model type
@@ -44,7 +42,7 @@ public string EntityName {
44
42
public List < RelationshipAttribute > Relationships { get ; set ; }
45
43
46
44
private List < IResourceField > _fields ;
47
- public List < IResourceField > Fields { get { _fields = _fields ?? Attributes . Cast < IResourceField > ( ) . Concat ( Relationships ) . ToList ( ) ; return _fields ; } }
45
+ public List < IResourceField > Fields { get { return _fields = _fields ?? Attributes . Cast < IResourceField > ( ) . Concat ( Relationships ) . ToList ( ) ; } }
48
46
49
47
/// <summary>
50
48
/// Configures which links to show in the <see cref="TopLevelLinks"/>
You can’t perform that action at this time.
0 commit comments