Files
hamann-ausgabe-core/HaLive/Models/MenuItem.cs
2021-09-15 13:31:10 +02:00

15 lines
324 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HaLive.Models
{
public abstract class MenuItem
{
public string FriendlyName { get; set; }
public string DefaultRoute { get; set; }
public bool Active { get; set; } = false;
}
}