SettlementPlanDto.cs
333 bytes
| 1 | namespace App.DTO.v1; |
|---|---|
| 2 | |
| 3 | public class SettlementPlanDto |
| 4 | { |
| 5 | public Guid Id { get; set; } |
| 6 | public Guid TripId { get; set; } |
| 7 | public decimal TotalAmount { get; set; } |
| 8 | public string Status { get; set; } = default!; |
| 9 | public DateTime? CompletedAt { get; set; } |
| 10 | public List<SettlementPaymentDto>? Payments { get; set; } |
| 11 | } |
| 12 | |