6
2025-11-03 10:15:18 +03: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;
}
}