Files
tbd-station-14/Content.Server/Administration/Notes/AdminNotesExtensions.cs

22 lines
549 B
C#

using Content.Server.Database;
using Content.Shared.Administration.Notes;
namespace Content.Server.Administration.Notes;
public static class AdminNotesExtensions
{
public static SharedAdminNote ToShared(this AdminNote note)
{
return new SharedAdminNote(
note.Id,
note.RoundId,
note.PlayerUserId,
note.Message,
note.CreatedBy.LastSeenUserName,
note.LastEditedBy.LastSeenUserName,
note.CreatedAt,
note.LastEditedAt
);
}
}