using Content.Server.Maps.NameGenerators;
namespace Content.Server.Station.Components;
///
/// This is used for setting up a station's name.
///
[RegisterComponent]
public sealed partial class StationNameSetupComponent : Component
{
///
/// The name template to use for the station.
/// If there's a name generator this should follow it's required format.
///
[DataField("mapNameTemplate", required: true)]
public string StationNameTemplate { get; private set; } = default!;
///
/// Name generator to use for the station, if any.
///
[DataField("nameGenerator")]
public StationNameGenerator? NameGenerator { get; private set; }
}