Files
tbd-station-14/Content.Shared/Administration/Notes/UserNotesEuiState.cs
2023-07-21 13:38:52 +02:00

16 lines
417 B
C#

using Content.Shared.Database;
using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared.Administration.Notes;
[Serializable, NetSerializable]
public sealed class UserNotesEuiState : EuiStateBase
{
public UserNotesEuiState(Dictionary<(int, NoteType), SharedAdminNote> notes)
{
Notes = notes;
}
public Dictionary<(int, NoteType), SharedAdminNote> Notes { get; }
}