mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
21 lines
467 B
C#
21 lines
467 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace sodoff.Model {
|
|
public class InventoryItem {
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public int ItemId { get; set; }
|
|
|
|
public int VikingId { get; set; }
|
|
|
|
public string? StatsSerialized { get; set; }
|
|
|
|
public string? AttributesSerialized { get; set; }
|
|
|
|
public virtual Viking Viking { get; set; } = null!;
|
|
|
|
public int Quantity { get; set; }
|
|
}
|
|
}
|