12 lines
305 B
C#
12 lines
305 B
C#
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>();
|
|
}
|