namespace VisibleSpectators;
///
/// Configuration for the VisibleSpectators plugin.
///
public class SpectatorConfig
{
///
/// Header message shown above the spectator list.
///
public string HeaderMessage { get; set; } = "Spectators:";
///
/// Message shown when there are no spectators.
///
public string NoSpectatorsMessage { get; set; } = "No spectators";
}