8 lines
247 B
C#
8 lines
247 B
C#
namespace DotBased.ASP.Auth.Domains.Auth;
|
|
|
|
public class PermissionModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Permission { get; set; } = string.Empty;
|
|
} |