Kavita+ Overhaul & New Changelog (#3507)
This commit is contained in:
parent
d880c1690c
commit
a5707617f2
249 changed files with 14775 additions and 2300 deletions
16
API/DTOs/KavitaPlus/Account/UserTokenInfo.cs
Normal file
16
API/DTOs/KavitaPlus/Account/UserTokenInfo.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
|
||||
namespace API.DTOs.KavitaPlus.Account;
|
||||
|
||||
/// <summary>
|
||||
/// Represents information around a user's tokens and their status
|
||||
/// </summary>
|
||||
public class UserTokenInfo
|
||||
{
|
||||
public int UserId { get; set; }
|
||||
public string Username { get; set; }
|
||||
public bool IsAniListTokenSet { get; set; }
|
||||
public bool IsAniListTokenValid { get; set; }
|
||||
public DateTime AniListValidUntilUtc { get; set; }
|
||||
public bool IsMalTokenSet { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue