Skip to content

Commit

Permalink
quick fix for BSON models
Browse files Browse the repository at this point in the history
  • Loading branch information
fokklz committed Jan 14, 2024
1 parent 26d6f19 commit f6d9de6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions SkiServiceModels/Models/BSON/Order.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace SkiServiceModels.Models.BSON
{
[BsonIgnoreExtraElements]
public class Order : OrderBase, IGenericBSONModel
{
[BsonId]
Expand Down
1 change: 1 addition & 0 deletions SkiServiceModels/Models/BSON/Priority.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace SkiServiceModels.Models.BSON
{
[BsonIgnoreExtraElements]
public class Priority : PriorityBase, IGenericBSONModel
{
[BsonId]
Expand Down
1 change: 1 addition & 0 deletions SkiServiceModels/Models/BSON/Service.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace SkiServiceModels.Models.BSON
{
[BsonIgnoreExtraElements]
public class Service : ServiceBase, IGenericBSONModel
{
[BsonId]
Expand Down
1 change: 1 addition & 0 deletions SkiServiceModels/Models/BSON/State.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace SkiServiceModels.Models.BSON
{
[BsonIgnoreExtraElements]
public class State : StateBase, IGenericBSONModel
{
[BsonId]
Expand Down
1 change: 1 addition & 0 deletions SkiServiceModels/Models/BSON/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

namespace SkiServiceModels.Models.BSON
{
[BsonIgnoreExtraElements]
public class User : UserBase, IGenericBSONModel
{
[BsonId]
Expand Down

0 comments on commit f6d9de6

Please sign in to comment.