Role.cs 212 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ShoeShopMvc.Models;
  4. public partial class Role
  5. {
  6. public string RoleId { get; set; } = null!;
  7. public string RoleName { get; set; } = null!;
  8. }