NadekoBot/NadekoBot.Core/Common/ShardCom/ShardComMessage.cs

14 lines
303 B
C#

using System;
using Discord;
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; }
}
}