Delta-v/Content.Server/DeltaV/Cargo/Components/StationLogisticStatsDatabas...

14 lines
450 B
C#

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