MyBookmark/Modules.User.Application/Models/Access/PermissionShort.cs

9 lines
229 B
C#

namespace Modules.User.Application.Models.Access;
public class Permission
{
public int Id { get; set; }
public string Name { get; set; }
public string? Description { get; set; }
public string Code { get; set; }
}