Files
hamann-ausgabe-core/Archive/HaLive/Models/MenuItem.cs
2022-11-25 19:15:23 +01: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;
}
}