profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
InvitationDto.cs 362 bytes
1 namespace App.DTO.v1;
2
3 public class InvitationDto
4 {
5 public Guid Id { get; set; }
6 public Guid TripId { get; set; }
7 public string? TripName { get; set; }
8 public string Token { get; set; } = default!;
9 public string Status { get; set; } = default!;
10 public DateTime ExpiresAt { get; set; }
11 public string? InvitedByUserName { get; set; }
12 }
13