Files
RhythmicWallpaper/AudioVisualizer/SSO/LoginMeta.cs

15 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AudioWallpaper.SSO {
public class LoginMeta {
public bool IsLoggedIn { get; set; }
public DateTime LastLoginTime { get; set; } = DateTime.Now;
public UserInfoSet? UserInfo { get; set; }
}
}