-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathConfig.cs
More file actions
36 lines (30 loc) · 1.06 KB
/
Config.cs
File metadata and controls
36 lines (30 loc) · 1.06 KB
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
26
27
28
29
30
31
32
33
34
35
36
using System.Collections.Generic;
namespace ShopPlugin
{
public class ItemInfo
{
public int Id = 0;
public string Name = "";
public bool Infinity = false;
public int Amount = 0;
/// <summary>Цена купли у игрока</summary>
public string SelPrice = "0";
/// <summary>Цена продажи игроку</summary>
public string BuyPrice = "0";
}
public class Config
{
public string BuyCommand = "";
public string BuyItemPermission = "";
public string SellCommand = "";
public string SellItemPermission = "";
public string ShopCommand = "";
public string ShopPermission = "";
public string SearchCommand = "";
public string SearchPermission = "";
public string ShopRegionName = "";
public string Tip = "";
public List<ItemInfo> Items = new List<ItemInfo>();
public Dictionary<string, string> Messages = new Dictionary<string, string>();
}
}