InvitationDto.cs
460 bytes
| 1 | namespace SplitApp.Modules.Trips.Api.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 | |
| 14 | public class InvitationCreateDto |
| 15 | { |
| 16 | public Guid TripId { get; set; } |
| 17 | } |
| 18 | |