FinalDemo/Hard_Demo/Models/Role.cs

12 lines
198 B
C#
Raw Normal View History

2025-03-09 15:02:57 +00:00
using System;
using System.Collections.Generic;
namespace Hard_Demo.Models;
public partial class Role
{
public int RoleId { get; set; }
public string RoleName { get; set; } = null!;
}