using VpSharp;
namespace VPLink.Common.Configuration;
///
/// Represents the chat configuration.
///
public interface IChatConfiguration
{
///
/// Gets or sets the color of the message.
///
/// The message color.
uint Color { get; set; }
///
/// Gets or sets the font style of the message.
///
/// The font style.
FontStyle Style { get; set; }
}