Files
silver-octo-spoon/wolverine/a-frame-architecture/FinancialApi.Domain/Events/FundsTransferredEvent.cs
T

3 lines
138 B
C#

namespace FinancialApi.Domain.Events;
public record FundsTransferredEvent(int SourceAccountId, int DestinationAccountId, decimal Amount);