TripCreateDto.cs
329 bytes
| 1 | namespace App.DTO.v1; |
|---|---|
| 2 | |
| 3 | public class TripCreateDto |
| 4 | { |
| 5 | public string Name { get; set; } = default!; |
| 6 | public string? Description { get; set; } |
| 7 | public string? Destination { get; set; } |
| 8 | public DateTime? StartDate { get; set; } |
| 9 | public DateTime? EndDate { get; set; } |
| 10 | public Guid DefaultCurrencyId { get; set; } |
| 11 | } |
| 12 | |