fish-station/Content.Shared/Administration/Notes/UserNotesEuiState.cs
Riggle 579913b617
Better notes and bans (#14228)
Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com>
2023-07-21 13:38:52 +02:00

15 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; }
}