mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
17 lines
467 B
C#
17 lines
467 B
C#
using System;
|
|
|
|
namespace API.DTOs.KavitaPlus.Account;
|
|
|
|
/// <summary>
|
|
/// Represents information around a user's tokens and their status
|
|
/// </summary>
|
|
public sealed record 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; }
|
|
}
|