-
Notifications
You must be signed in to change notification settings - Fork 3
/
BotInfo.cs
82 lines (77 loc) · 1.54 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
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;
private int _accountId;
private string _market;
private string _baseType;
private bool _futures;
public BotInfo(int accountID,int botId, int max, string market, string baseType, bool futures)
{
_botId = botId;
_max = max;
_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()
{
return _max;
}
public void setMax_ar(int max)
{
_max = max;
}
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;
}
}