Files
demo-ddd-without-oop/csharp-oop/Contracts/WithdrawMoneyCommand.cs
T
Oli Sturm 3e9f0b56c9 initial
2026-04-21 14:43:06 +01:00

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; }
}