Skip to content

Commit f81b1b9

Browse files
author
Bart Koelman
committed
Unified Attr and Relationship into common base class; matched-up namespaces
1 parent 9d7614f commit f81b1b9

File tree

115 files changed

+415
-361
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+415
-361
lines changed

benchmarks/BenchmarkResource.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JsonApiDotNetCore.Models;
2+
using JsonApiDotNetCore.Models.Annotation;
23

34
namespace Benchmarks
45
{

src/Examples/GettingStarted/Models/Article.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JsonApiDotNetCore.Models;
2+
using JsonApiDotNetCore.Models.Annotation;
23

34
namespace GettingStarted.Models
45
{

src/Examples/GettingStarted/Models/Person.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.Collections.Generic;
22
using JsonApiDotNetCore.Models;
3+
using JsonApiDotNetCore.Models.Annotation;
34

45
namespace GettingStarted.Models
56
{

src/Examples/JsonApiDotNetCoreExample/Models/Article.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Collections.Generic;
22
using System.ComponentModel.DataAnnotations.Schema;
33
using JsonApiDotNetCore.Models;
4+
using JsonApiDotNetCore.Models.Annotation;
45

56
namespace JsonApiDotNetCoreExample.Models
67
{

src/Examples/JsonApiDotNetCoreExample/Models/ArticleTag.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using JsonApiDotNetCore.Models;
3+
using JsonApiDotNetCore.Models.Annotation;
34
using JsonApiDotNetCoreExample.Data;
45

56
namespace JsonApiDotNetCoreExample.Models

src/Examples/JsonApiDotNetCoreExample/Models/Author.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using JsonApiDotNetCore.Models;
22
using System.Collections.Generic;
3+
using JsonApiDotNetCore.Models.Annotation;
34

45
namespace JsonApiDotNetCoreExample.Models
56
{

src/Examples/JsonApiDotNetCoreExample/Models/KebabCasedModel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JsonApiDotNetCore.Models;
2+
using JsonApiDotNetCore.Models.Annotation;
23

34
namespace JsonApiDotNetCoreExample.Models
45
{

src/Examples/JsonApiDotNetCoreExample/Models/Model.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JsonApiDotNetCore.Models;
2+
using JsonApiDotNetCore.Models.Annotation;
23

34
namespace JsonApiDotNetCoreExample.Models
45
{

src/Examples/JsonApiDotNetCoreExample/Models/Passport.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.ComponentModel.DataAnnotations.Schema;
44
using System.Linq;
55
using JsonApiDotNetCore.Models;
6+
using JsonApiDotNetCore.Models.Annotation;
67
using JsonApiDotNetCoreExample.Data;
78
using Microsoft.AspNetCore.Authentication;
89

src/Examples/JsonApiDotNetCoreExample/Models/Person.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Collections.Generic;
22
using System.Linq;
33
using JsonApiDotNetCore.Models;
4+
using JsonApiDotNetCore.Models.Annotation;
45
using JsonApiDotNetCore.Models.Links;
56

67
namespace JsonApiDotNetCoreExample.Models

0 commit comments

Comments
 (0)