11 lines
222 B
C#
11 lines
222 B
C#
namespace Content.Shared.Procedural.Rewards;
|
|
|
|
/// <summary>
|
|
/// Payout to the station's bank account.
|
|
/// </summary>
|
|
public sealed class BankReward : ISalvageReward
|
|
{
|
|
[DataField("amount")]
|
|
public int Amount = 0;
|
|
}
|