- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace ProductionLineMonitor.Core.Models
- {
- [Table("RoleMenus")]
- public class RoleMenu : Base
- {
- public string RoleId { get; set; }
- public string MenuId { get; set; }
- }
- }
|