14 lines
303 B
C#
Raw Normal View History

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