namespace FinControl.Application.Features.Accounts.Commands; public class CreateAccountCommand { public Guid UserId { get; set; } public string Name { get; set; } = string.Empty; public int Type { get; set; } public decimal InitialBalance { get; set; } public string? Institution { get; set; } }