35 lines
830 B
C#
35 lines
830 B
C#
using System;
|
|
|
|
namespace Kreta.BusinessLogic.Security
|
|
{
|
|
public class AuthenticationInfo
|
|
{
|
|
public string InstituteCode { get; set; }
|
|
|
|
public int InstituteUserId { get; set; }
|
|
|
|
public string InstituteUserUniqueId { get; set; }
|
|
|
|
public Guid InstituteUserIdpUniqueId { get; set; }
|
|
|
|
public Guid? TutelaryIdpUniqueId { get; set; }
|
|
|
|
public int? TutelaryId { get; set; }
|
|
|
|
public string TutelaryUniqueId { get; set; }
|
|
|
|
public int? SchoolYearId { get; set; }
|
|
|
|
public string SchoolYearUniqueId { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public string EmailAddress { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string[] Roles { get; set; }
|
|
|
|
public DateTime IssuedAt { get; } = DateTime.Now;
|
|
}
|
|
}
|