8 lines
153 B
C#
Executable File
8 lines
153 B
C#
Executable File
namespace GamificationService.Models;
|
|
|
|
public class UserSession
|
|
{
|
|
public string? Login { get; set; }
|
|
public bool IsAuthenticated { get; set; }
|
|
}
|