InventoryManager / Entities / AspNetRoleClaim.cs
AspNetRoleClaim.cs
Raw
using System;
using System.Collections.Generic;

#nullable disable

namespace InventoryManager.Entities
{
    public partial class AspNetRoleClaim
    {
        public int Id { get; set; }
        public string RoleId { get; set; }
        public string ClaimType { get; set; }
        public string ClaimValue { get; set; }

        public virtual AspNetRole Role { get; set; }
    }
}