profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
TripParticipantDto.cs 424 bytes
1 namespace App.DTO.v1;
2
3 public class TripParticipantDto
4 {
5 public Guid Id { get; set; }
6 public Guid TripId { get; set; }
7 public Guid UserId { get; set; }
8 public string? UserName { get; set; }
9 public string? UserEmail { get; set; }
10 public string Role { get; set; } = default!;
11 public string? Nickname { get; set; }
12 public DateTime JoinedAt { get; set; }
13 public bool IsActive { get; set; }
14 }
15