Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/Common/TempLoginSession.cs

16 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBookServer.Application.Common
{
public class TempLoginSession
{
public int UserId { get; set; }
public string Code { get; set; } = string.Empty;
public DateTime ExpiresAt { get; set; }
}
}