namespace Content.Server.GameTicking.Rules.Configurations;
///
/// Configures a game rule, providing information like what maps to use or how long to run.
///
[ImplicitDataDefinitionForInheritors]
public abstract class GameRuleConfiguration
{
///
/// The game rule this configuration is intended for.
///
public abstract string Id { get; }
}