mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
21 lines
518 B
C#
21 lines
518 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.Message,
|
|
note.CreatedBy.LastSeenUserName,
|
|
note.LastEditedBy.LastSeenUserName,
|
|
note.CreatedAt,
|
|
note.LastEditedAt
|
|
);
|
|
}
|
|
}
|