using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Torch.API { public interface IChatMessage { /// /// The time the message was created. /// DateTime Timestamp { get; } /// /// The SteamID of the message author. /// ulong SteamId { get; } /// /// The name of the message author. /// string Name { get; } /// /// The content of the message. /// string Message { get; } } }