init efcore

This commit is contained in:
bob
2026-05-29 12:21:42 -05:00
commit 3d3a5c2a5e
28 changed files with 2071 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace BlueLaminate.EFCore.Entities;
public class Weapon
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string Type { get; set; } = null!;
public string Team { get; set; } = null!;
public ICollection<Skin> Skins { get; set; } = new List<Skin>();
}