demka/demofinish/Models/Role.cs

14 lines
277 B
C#
Raw Permalink Normal View History

2024-12-26 13:15:57 +00:00
using System;
using System.Collections.Generic;
namespace demofinish.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>();
}