Demo/Demo3/Models/Role.cs

14 lines
272 B
C#
Raw Permalink Normal View History

2024-12-27 10:32:41 +00:00
using System;
using System.Collections.Generic;
namespace Demo3.Models;
public partial class Role
{
public int Roleid { get; set; }
public string Rolename { get; set; } = null!;
public virtual ICollection<User> Users { get; set; } = new List<User>();
}