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 | |