24 lines
504 B
24 lines
504 B
5 years ago
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace CK.SCP.Models.AppBoxEntity
|
||
|
{
|
||
|
public class Role : IKeyID
|
||
|
{
|
||
|
[Key]
|
||
|
public int ID { get; set; }
|
||
|
|
||
|
[Required, StringLength(50)]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[StringLength(500)]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
|
||
|
public virtual ICollection<User> Users { get; set; }
|
||
|
|
||
|
|
||
|
public virtual ICollection<Power> Powers { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|