classlib/ExpenseTracker.Application/Accounts/Commands/Create/CreateAccountCommand.cs
2024-08-07 21:12:02 +03:00

17 lines
356 B
C#

using MediatR;
namespace ExpenseTracker.Application.Accounts.Commands.Create;
public record CreateAccountCommand : IRequest<AccountDto>
{
public string Name { get; set; }
public string? Description { get; set; }
public double InitialBalance { get; set; }
public string Currency { get; set; }
public string? UserId { get; set; }
}