1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- namespace ProductionLineMonitor.Core.Models
- {
- [Table("Menus")]
- public class Menu : Base
- {
- public string Name { get; set; }
- public string Icon { get; set; }
- public string Url { get; set; }
- public string FatherId { get; set; }
- public int Level { get; set; }
- }
- }
|