Newer
Older
ReservationPattern / ReservationSaga / UserRegistrationStarted.cs
@Derek Comartin Derek Comartin on 7 Feb 2023 230 bytes Another Exmaple
using NServiceBus;

namespace ReservationSaga;

public class UserRegistrationStarted : IEvent
{
    public string Username { get; set; }
}

public class UserRegistrationExpired : IEvent
{
    public string Username { get; set; }
}