23 lines
470 B
C#
23 lines
470 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._White.Economy;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class EftposBuiState : BoundUserInterfaceState
|
|
{
|
|
public bool Locked;
|
|
public int Amount;
|
|
public string Owner = string.Empty;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class EftposLockMessage : BoundUserInterfaceMessage
|
|
{
|
|
public int Amount;
|
|
|
|
public EftposLockMessage(int amount)
|
|
{
|
|
Amount = amount;
|
|
}
|
|
}
|