mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-16 10:20:46 +02:00
8 lines
301 B
C#
8 lines
301 B
C#
namespace API.Schema.ActionsContext.Actions;
|
|
|
|
public sealed class StartupActionRecord(string action, DateTime performedAt) : ActionRecord(action, performedAt)
|
|
{
|
|
public StartupActionRecord() : this(StartupAction, DateTime.UtcNow) { }
|
|
|
|
public const string StartupAction = "Tranga.Started";
|
|
} |