Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Oct 29, 2024
1 parent cb4d88f commit 3b0d2a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ public class ManyToManyShadowLeftEntity

[ForeignKey("ManyToManyShadowLeftEntityId")]
[InverseProperty("ManyToManyShadowLeftEntities")]
public virtual ICollection<ManyToManyShadowRightEntity> ManyToManyShadowRightEntities { get; set; } = new List<ManyToManyShadowRightEntity>();
public virtual ICollection<ManyToManyShadowRightEntity> ManyToManyShadowRightEntities { get; set; } = [];
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ public class ManyToManyShadowRightEntity

[ForeignKey("ManyToManyShadowRightEntityId")]
[InverseProperty("ManyToManyShadowRightEntities")]
public virtual ICollection<ManyToManyShadowLeftEntity> ManyToManyShadowLeftEntities { get; set; } = new List<ManyToManyShadowLeftEntity>();
public virtual ICollection<ManyToManyShadowLeftEntity> ManyToManyShadowLeftEntities { get; set; } = [];
}

0 comments on commit 3b0d2a4

Please sign in to comment.