mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-17 10:50:45 +02:00
6 lines
249 B
C#
6 lines
249 B
C#
namespace API.Schema.ActionsContext.Actions;
|
|
|
|
public sealed class StartupActionRecord(ActionsEnum action, DateTime performedAt) : ActionRecord(action, performedAt)
|
|
{
|
|
public StartupActionRecord() : this(ActionsEnum.Startup, DateTime.UtcNow) { }
|
|
} |