Better notes and bans (#14228)
Co-authored-by: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com>
This commit is contained in:
15
Content.Shared/Administration/Notes/UserNotesEuiState.cs
Normal file
15
Content.Shared/Administration/Notes/UserNotesEuiState.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user