summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Inventory.cs
blob: 8e525c6465c542badef739260ee7226d4621fbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace DSACore.Models.Database
{
    public class Inventory
    {
        private int Id { get; set; }
        private List<string> Items { get; set; } = new List<string>();
        private List<string> Food { get; set; } = new List<string>();
        private List<Weapon> Weapons { get; set; } = new List<Weapon>();
    }
}