RoleMenu.cs 327 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Core.Models
  6. {
  7. [Table("RoleMenus")]
  8. public class RoleMenu : Base
  9. {
  10. public string RoleId { get; set; }
  11. public string MenuId { get; set; }
  12. }
  13. }