using Content.Shared.StatusIcon;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
namespace Content.Server.Access.Components
{
[RegisterComponent]
public sealed class AgentIDCardComponent : Component
{
///
/// Set of job icons that the agent ID card can show.
///
[DataField("icons", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))]
public readonly HashSet Icons = new();
}
}