profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
WishlistItemDto.cs 713 bytes
1 namespace App.DTO.v1;
2
3 public class WishlistItemDto
4 {
5 public Guid Id { get; set; }
6 public Guid TripId { get; set; }
7 public Guid AddedByUserId { get; set; }
8 public string? AddedByUserName { get; set; }
9 public string Title { get; set; } = default!;
10 public string? Description { get; set; }
11 public string Category { get; set; } = default!;
12 public string Priority { get; set; } = default!;
13 public decimal? EstimatedCost { get; set; }
14 public string? Url { get; set; }
15 public string? Location { get; set; }
16 public bool IsCompleted { get; set; }
17 public int VoteCount { get; set; }
18 public bool UserHasVoted { get; set; }
19 public int DisplayOrder { get; set; }
20 }
21