init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
35
Kreta.BusinessLogic/Security/AuthenticationInfo.cs
Normal file
35
Kreta.BusinessLogic/Security/AuthenticationInfo.cs
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue