new_demo/Models/Role.cs

12 lines
198 B
C#
Raw Permalink Normal View History

2025-02-11 13:24:30 +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!;
}