No repository description.
namespace App.DTO.v1;
public class BudgetCategoryCreateDto
{
public Guid TripId { get; set; }
public string Name { get; set; } = default!;
public string? IconName { get; set; }
public decimal? PlannedAmount { get; set; }
public int DisplayOrder { get; set; }
}