2023-10-31 15:09:10 -07:00
|
|
|
using Content.Shared.Roles;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2023-12-09 23:38:50 -06:00
|
|
|
namespace Content.Server.Access.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class PresetIdCardComponent : Component
|
2020-06-06 22:55:00 +02:00
|
|
|
{
|
2023-12-09 23:38:50 -06:00
|
|
|
[DataField("job")]
|
|
|
|
|
public ProtoId<JobPrototype>? JobName;
|
2023-09-28 23:53:53 +13:00
|
|
|
|
2023-12-09 23:38:50 -06:00
|
|
|
[DataField("name")]
|
|
|
|
|
public string? IdName;
|
2020-06-06 22:55:00 +02:00
|
|
|
}
|