-
Notifications
You must be signed in to change notification settings - Fork 2
/
BotInfo.cs
92 lines (87 loc) · 1.76 KB
/
BotInfo.cs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using System;
using System.Linq;
using XCommas.Net;
using XCommas.Net.Objects;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Net;
using System.Net.Http;
using System.Text;
using Discord;
using Discord.WebSocket;
public class BotInfo
{
private int _botId;
private int _max_ar;
private int _max_gs;
private int _accountId;
private string _market;
private string _baseType;
private bool _futures;
public BotInfo(int accountID,int botId, int max_ar, int max_gs, string market, string baseType, bool futures)
{
_botId = botId;
_max_ar = max_ar;
_max_gs = max_gs;
_accountId = accountID;
_market = market;
_baseType = baseType;
_futures = futures;
}
public int getAccountID()
{
return _accountId;
}
public void setAccountID(int accountId)
{
_accountId = accountId;
}
public int getBotId()
{
return _botId;
}
public void setBotID(int botId)
{
_botId = botId;
}
public int getMax_ar()
{
return _max_ar;
}
public void setMax_ar(int max_ar)
{
_max_ar = max_ar;
}
public int getMax_gs()
{
return _max_gs;
}
public void setMax_gs(int max_gs)
{
_max_gs = max_gs;
}
public string getMarket()
{
return _market;
}
public void setMarket(string market)
{
_market = market;
}
public string getBaseType()
{
return _baseType;
}
public void setBaseType(string basetype)
{
_baseType= basetype;
}
public bool getFutures()
{
return _futures;
}
public void setFutures(bool futures)
{
_futures = futures;
}
}