Menu.cs 439 B

1234567891011121314151617
  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("Menus")]
  8. public class Menu : Base
  9. {
  10. public string Name { get; set; }
  11. public string Icon { get; set; }
  12. public string Url { get; set; }
  13. public string FatherId { get; set; }
  14. public int Level { get; set; }
  15. }
  16. }