Files
PlaylistShared/PlaylistShared.Shared/Profile/YandexTokenStatus.cs
2026-04-14 01:05:06 +03:00

8 lines
200 B
C#

namespace PlaylistShared.Shared.Profile;
public class YandexTokenStatus
{
public bool HasToken { get; set; }
public bool IsValid { get; set; }
public DateTime ExpiryUtc { get; set; }
}