| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using Content.Shared.Database;
- using Content.Shared.Eui;
- using Robust.Shared.Serialization;
- namespace Content.Shared.Administration.Notes;
- [Serializable, NetSerializable]
- public sealed class AdminNotesEuiState : EuiStateBase
- {
- public AdminNotesEuiState(string notedPlayerName, Dictionary<(int, NoteType), SharedAdminNote> notes, bool canCreate, bool canDelete, bool canEdit)
- {
- NotedPlayerName = notedPlayerName;
- Notes = notes;
- CanCreate = canCreate;
- CanDelete = canDelete;
- CanEdit = canEdit;
- }
- public string NotedPlayerName { get; }
- public Dictionary<(int noteId, NoteType noteType), SharedAdminNote> Notes { get; }
- public bool CanCreate { get; }
- public bool CanDelete { get; }
- public bool CanEdit { get; }
- }
- public static class AdminNoteEuiMsg
- {
- [Serializable, NetSerializable]
- public sealed class CreateNoteRequest : EuiMessageBase
- {
- public CreateNoteRequest(NoteType type, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime)
- {
- NoteType = type;
- Message = message;
- NoteSeverity = severity;
- Secret = secret;
- ExpiryTime = expiryTime;
- }
- public NoteType NoteType { get; set; }
- public string Message { get; set; }
- public NoteSeverity? NoteSeverity { get; set; }
- public bool Secret { get; set; }
- public DateTime? ExpiryTime { get; set; }
- }
- [Serializable, NetSerializable]
- public sealed class DeleteNoteRequest : EuiMessageBase
- {
- public DeleteNoteRequest(int id, NoteType type)
- {
- Id = id;
- Type = type;
- }
- public int Id { get; set; }
- public NoteType Type { get; set; }
- }
- [Serializable, NetSerializable]
- public sealed class EditNoteRequest : EuiMessageBase
- {
- public EditNoteRequest(int id, NoteType type, string message, NoteSeverity? severity, bool secret, DateTime? expiryTime)
- {
- Id = id;
- Type = type;
- Message = message;
- NoteSeverity = severity;
- Secret = secret;
- ExpiryTime = expiryTime;
- }
- public int Id { get; set; }
- public NoteType Type { get; set; }
- public string Message { get; set; }
- public NoteSeverity? NoteSeverity { get; set; }
- public bool Secret { get; set; }
- public DateTime? ExpiryTime { get; set; }
- }
- }
|