NadekoBot/NadekoBot.Core/Common/ShardCom/IShardComMessage.cs

14 lines
303 B
C#
Raw Normal View History

2017-07-17 19:42:36 +00:00
using System;
using Discord;
2017-07-17 19:42:36 +00:00
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; }
}
}