blob: f91f086c5f505228491142067ea95ff86b19efe6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.Objects
{
public class Shop
{
public string Name { get; set; }
public string Description { get; set; }
public List<ShopItem> Items { get; set; }
public string Owner { get; set; }
}
public class ShopItem
{
public string Name { get; set; }
public string Description { get; set; }
public int Cost { get; set; }
public int FileType { get; set; }
public byte[] MUDFile { get; set; }
}
}
|