using Robust.Shared.GameStates;
namespace Content.Shared.Security.Components;
///
/// This is used for storing information about a Genpop ID in order to correctly display it on examine.
///
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause]
public sealed partial class GenpopIdCardComponent : Component
{
///
/// The crime committed, as a string.
///
[DataField, AutoNetworkedField]
public string Crime = string.Empty;
///
/// The length of the sentence
///
[DataField, AutoNetworkedField, AutoPausedField]
public TimeSpan SentenceDuration;
}