11 lines
294 B
C#
11 lines
294 B
C#
using NodaTime;
|
|
|
|
namespace DysonNetwork.Shared.Stream;
|
|
|
|
public class AccountDeletedEvent
|
|
{
|
|
public static string Type => "account.deleted";
|
|
|
|
public Guid AccountId { get; set; } = Guid.NewGuid();
|
|
public Instant DeletedAt { get; set; } = SystemClock.Instance.GetCurrentInstant();
|
|
} |