namespace FinControl.Application.Features.Accounts.DTOs; public class AccountDto { public Guid Id { get; set; } public string Name { get; set; } = string.Empty; public int Type { get; set; } public decimal InitialBalance { get; set; } public decimal CurrentBalance { get; set; } public string? Institution { get; set; } public DateTime CreatedAt { get; set; } }