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