14 lines
337 B
C#
14 lines
337 B
C#
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; }
|
|
}
|
|
}
|