9 lines
211 B
C#
9 lines
211 B
C#
namespace CsharpOop.Contracts;
|
|
|
|
/// Command DTO representing the requested use case
|
|
public sealed class WithdrawMoneyCommand
|
|
{
|
|
public Guid AccountId { get; init; }
|
|
public decimal Amount { get; init; }
|
|
}
|