mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 10:15:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			324 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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;
 | |
|     }
 | |
| }
 | 
