source: iknow-api/Models/RefreshToken.cs@ 2d64b2e

Last change on this file since 2d64b2e was 2d64b2e, checked in by imbrsk <boris696boris@…>, 10 months ago

Refactor model properties for consistency and clarity

  • Property mode set to 100644
File size: 347 bytes
RevLine 
[3347c1b]1using iknow_api.Models;
2
3namespace iknow_api.Models
4{
5 public class RefreshToken
6 {
7 public int Id { get; set; }
[c155364]8 public int UserId { get; set; }
[2d64b2e]9 public User? User { get; set; }
[c155364]10 public string? Token { get; set; }
[3347c1b]11 public DateTime ExpiresAt { get; set; }
12 public bool IsValid { get; set; }
13 }
14}
Note: See TracBrowser for help on using the repository browser.