Den is the private cloud vault for your reminders, calendars and to-dos.
at main 8 lines 168 B view raw
1namespace Den.Application.Auth; 2 3public record AuthResponse( 4 string AccessToken, 5 string RefreshToken, 6 DateTime ExpiresIn, 7 string TokenType = "Bearer" 8);