mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-15 03:31:38 +01:00
16 lines
417 B
C#
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; }
|
|
}
|