using Content.Shared.Roles;
using Robust.Shared.Prototypes;
namespace Content.Shared.SprayPainter.Prototypes;
///
/// Maps airlock style names to department ids.
///
[Prototype]
public sealed partial class AirlockDepartmentsPrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
///
/// Dictionary of style names to department ids.
/// If a style does not have a department (e.g. external) it is set to null.
///
[DataField(required: true)]
public Dictionary> Departments = new();
}