No repository description.
namespace SplitApp.WebApp.Application.DTO;
public class BalanceBllDto
{
public Guid UserId { get; set; }
public string UserFullName { get; set; } = default!;
public decimal Balance { get; set; }
public decimal TotalPaid { get; set; }
public decimal TotalOwed { get; set; }
}