22 lines
510 B
C#
22 lines
510 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using FluentNHibernate.Mapping;
|
|
using System.Collections.Generic;
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
namespace Tanshu.Accounts.Entities.Auth
|
|
{
|
|
public class Role
|
|
{
|
|
public virtual int RoleID { get; set; }
|
|
[NotNull, Unique]
|
|
public virtual string Name { get; set; }
|
|
public virtual IList<RoleGroup> Groups { get; set; }
|
|
|
|
public Role()
|
|
{
|
|
Groups = new List<RoleGroup>();
|
|
}
|
|
}
|
|
}
|