mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-28 16:55:32 +00:00
13 lines
243 B
C#
13 lines
243 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HaLive.Models
|
|
{
|
|
public class MenuSubMenuItem : MenuItem
|
|
{
|
|
public List<MenuPageItem> menuPages { get; set; }
|
|
}
|
|
}
|