using System; using System.Collections.Generic; namespace ShoeShopMvc.Models; public partial class Role { public string RoleId { get; set; } = null!; public string RoleName { get; set; } = null!; }