No repository description.
namespace App.DTO.v1;
public class ExpenseSplitDto
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public string? UserName { get; set; }
public decimal Amount { get; set; }
public decimal? Percentage { get; set; }
}