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