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; }
///
/// Gets or sets the color of a reply message.
///
/// The reply message color.
uint ReplyColor { get; set; }
///
/// Gets or sets the font style of a reply message.
///
/// The reply font style.
FontStyle ReplyStyle { get; set; }
}