demo_hard/Models/Role.cs

12 lines
198 B
C#
Raw Normal View History

2025-02-04 12:27:32 +00:00
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
public partial class Role
{
public int RoleId { get; set; }
public string RoleName { get; set; } = null!;
}