This commit is contained in:
Oli Sturm
2026-04-21 14:43:06 +01:00
commit 3e9f0b56c9
11 changed files with 258 additions and 0 deletions
@@ -0,0 +1,8 @@
namespace CsharpOop.Contracts;
/// Command DTO representing the requested use case
public sealed class WithdrawMoneyCommand
{
public Guid AccountId { get; init; }
public decimal Amount { get; init; }
}