15 lines
302 B
C#
15 lines
302 B
C#
using MediatR;
|
|
|
|
namespace ExpenseTracker.Application.Accounts.Commands.Update;
|
|
|
|
public record UpdateAccountCommand : IRequest<AccountDto>
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public string UserId { get; set; }
|
|
}
|