15 lines
448 B
C#
15 lines
448 B
C#
using Content.Shared.Cargo;
|
|
using Content.Shared.CartridgeLoader.Cartridges;
|
|
|
|
namespace Content.Server._DV.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; }
|
|
}
|