XisongSpaceBooking_BackEnd/Models/Entities/Role.cs

12 lines
293 B
C#

using System.Collections.Generic;
namespace Models.Entities
{
public class Role
{
public int RoleId { get; set; }
public string RoleName { get; set; } = string.Empty;
public virtual ICollection<Account> Accounts { get; set; } = new HashSet<Account>();
}
}