10 lines
227 B
C#
10 lines
227 B
C#
|
namespace NG_2023_Kanban.DataLayer.Entities
|
|||
|
{
|
|||
|
public class Role : BaseEntity
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public virtual ICollection<User>? Members { get; set; } = new HashSet<User>();
|
|||
|
}
|
|||
|
}
|