WishlistItemCreateDto.cs
427 bytes
| 1 | namespace App.DTO.v1; |
|---|---|
| 2 | |
| 3 | public class WishlistItemCreateDto |
| 4 | { |
| 5 | public Guid TripId { get; set; } |
| 6 | public string Title { get; set; } = default!; |
| 7 | public string? Description { get; set; } |
| 8 | public string Category { get; set; } = default!; |
| 9 | public string Priority { get; set; } = default!; |
| 10 | public decimal? EstimatedCost { get; set; } |
| 11 | public string? Url { get; set; } |
| 12 | public string? Location { get; set; } |
| 13 | } |
| 14 | |