SettlementPaymentDto.cs
450 bytes
| 1 | namespace App.DTO.v1; |
|---|---|
| 2 | |
| 3 | public class SettlementPaymentDto |
| 4 | { |
| 5 | public Guid Id { get; set; } |
| 6 | public Guid FromUserId { get; set; } |
| 7 | public string? FromUserName { get; set; } |
| 8 | public Guid ToUserId { get; set; } |
| 9 | public string? ToUserName { get; set; } |
| 10 | public decimal Amount { get; set; } |
| 11 | public string Status { get; set; } = default!; |
| 12 | public DateTime? MarkedPaidAt { get; set; } |
| 13 | public DateTime? ConfirmedAt { get; set; } |
| 14 | } |
| 15 | |