using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AsbCloudDb.Model { [Table("t_user_role"), Comment("Роли пользователей в системе")] public class UserRole : IId { [Key] [Column("id")] public int Id { get; set; } [Column("caption"), Comment("Название")] [StringLength(255)] public string Caption { get; set; } [Column("id_type"), Comment("0-роль из стандартной матрицы, \n1-специальная роль для какого-либо пользователя")] public int IdType { get; set; } [Column("id_parent"), Comment("От какой роли унаследована данная роль")] public int? IdParent { get; set; } [InverseProperty(nameof(RelationUserUserRole.UserRole))] public virtual ICollection RelationUsersUserRoles { get; set; } [InverseProperty(nameof(RelationUserRolePermission.UserRole))] public virtual ICollection RelationUserRolePermissions { get; set; } } }