mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(dir): 🐛 Change.SubmittedAt setter
This commit is contained in:
parent
1a0733dc9c
commit
900a0a72f3
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@
|
|||
public abstract class Change
|
||||
{
|
||||
public string? Reason { get; protected init; }
|
||||
public DateTime SubmittedAt { get; } = DateTime.UtcNow;
|
||||
public DateTime SubmittedAt { get; protected init; } = DateTime.UtcNow;
|
||||
public DateTime? ApprovedAt { get; private set; }
|
||||
public DateTime? RejectedAt { get; private set; }
|
||||
public string? RejectedReason { get; private set; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue