UserNotesEuiState.cs 417 B

123456789101112131415
  1. using Content.Shared.Database;
  2. using Content.Shared.Eui;
  3. using Robust.Shared.Serialization;
  4. namespace Content.Shared.Administration.Notes;
  5. [Serializable, NetSerializable]
  6. public sealed class UserNotesEuiState : EuiStateBase
  7. {
  8. public UserNotesEuiState(Dictionary<(int, NoteType), SharedAdminNote> notes)
  9. {
  10. Notes = notes;
  11. }
  12. public Dictionary<(int, NoteType), SharedAdminNote> Notes { get; }
  13. }