This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,35 @@
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;
}
}