перенос общих файлов из папки White в _White
This commit is contained in:
22
Content.Shared/_White/Economy/EftposMessages.cs
Normal file
22
Content.Shared/_White/Economy/EftposMessages.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user