using Robust.Shared.Prototypes; namespace Content.Shared.Players.PlayTimeTracking; /// /// Given to a role to specify its ID for role-timer tracking purposes. That's it. /// [Prototype] public sealed partial class PlayTimeTrackerPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; }