using Robust.Shared.Serialization;
namespace Content.Shared._NF.Cargo.BUI;
[NetSerializable, Serializable]
public sealed class NFCargoPalletConsoleInterfaceState(
int appraisal,
int count,
bool enabled) : BoundUserInterfaceState
{
///
/// The estimated apraised value of all the entities on top of pallets on the same grid as the console.
///
public int Appraisal = appraisal;
///
/// The number of entities on top of pallets on the same grid as the console.
///
public int Count = count;
///
/// True if the buttons should be enabled.
///
public bool Enabled = enabled;
}