Projet de stage 2021

This commit is contained in:
2021-06-18 10:37:33 +02:00
commit eb522143cf
314 changed files with 202141 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace key4intranet.authentication.Models
{
public class ExposedUserModel
{
public string Id { get; set; }
public string Name { get; set; }
public List<string> Roles { get; set; }
public string Token { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace key4intranet.authentication.Models
{
public class PostUserModel
{
public string User { get; set; }
public string Pass { get; set; }
}
}

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
namespace key4intranet.authentication.Models
{
public class StoredUserModel
{
public string Id { get; set; }
public string Mail { get; set; }
public string Pass { get; set; }
public string Name { get; set; }
public List<string> Roles { get; set; }
}
}