Adding authentication and authorization flow
This commit is contained in:
9
MainProject/Models/Api/Common/Role/UserRole.cs
Normal file
9
MainProject/Models/Api/Common/Role/UserRole.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace BasicDotnetTemplate.MainProject.Models.Api.Common.Role;
|
||||
|
||||
public class UserRole
|
||||
{
|
||||
#nullable enable
|
||||
public string? Guid { get; set; }
|
||||
public string? Name { get; set; }
|
||||
#nullable disable
|
||||
}
|
||||
Reference in New Issue
Block a user