6
2026-01-13 18:31:02 +02:00

15 lines
309 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.CartridgeLoader.Cartridges;
[Serializable, NetSerializable]
public sealed class NotekeeperUiState : BoundUserInterfaceState
{
public List<string> Notes;
public NotekeeperUiState(List<string> notes)
{
Notes = notes;
}
}