using System; using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models { [Table("RoleMenuFunction")] public partial class RoleMenuFunction : Entity { public Guid RoleId { get; set; } public Guid MenuFunctionId { get; set; } public bool IsFunction { get; set; } } }