using Content.Shared._DV.Cargo.Systems; using Content.Shared._DV.CartridgeLoader.Cartridges; namespace Content.Shared._DV.Cargo.Components; /// /// Added to the abstract representation of a station to track stats related to mail delivery and income /// [RegisterComponent, Access(typeof(LogisticStatsSystem))] public sealed partial class StationLogisticStatsComponent : Component { [DataField] public MailStats Metrics; }