fixes for global nadeko

This commit is contained in:
Master Kwoth
2017-10-29 04:46:42 +01:00
parent 8ceb6f5c46
commit d91b7632f6
2 changed files with 22 additions and 6 deletions

View File

@ -5,9 +5,19 @@ namespace NadekoBot.Common.ShardCom
{
public class ShardComMessage
{
public int ShardId { get; set; }
public ConnectionState ConnectionState { get; set; }
public int Guilds { get; set; }
public DateTime Time { get; set; }
public ShardComMessage Clone() =>
new ShardComMessage
{
ShardId = ShardId,
ConnectionState = ConnectionState,
Guilds = Guilds,
Time = Time,
};
}
}