15 lines
309 B
C#
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;
|
|
}
|
|
}
|