chore: add missing file for migration
This commit is contained in:
parent
6a9e1c338e
commit
9a6a47e8f4
1 changed files with 7 additions and 1 deletions
|
@ -1,10 +1,16 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Server.DB.Documents;
|
||||
|
||||
public class InventoryItem
|
||||
{
|
||||
public Guid CharacterId { get; set; }
|
||||
public virtual Character Character { get; set; }
|
||||
|
||||
[Key]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public ushort ItemId { get; set; }
|
||||
public ushort Count { get; set; }
|
||||
public byte Slot { get; set; }
|
||||
|
|
Loading…
Reference in a new issue