Initial commit

This commit is contained in:
2026-03-18 08:06:55 +01:00
parent 05956e2953
commit a1defcab47
350 changed files with 121449 additions and 0 deletions

44
Models/Enum.cs Normal file
View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace System
{
/// <summary>
/// Definiert den Typen der App
/// </summary>
public enum AppType
{
/// <summary>
/// Keine bekannte Typen Zuordnung
/// </summary>
None = 0,
/// <summary>
/// Eine Benutzer-App
/// </summary>
User = 1,
/// <summary>
/// Eine Administrations-App
/// </summary>
Admin = 2,
/// <summary>
/// Eine Favoriten-App
/// </summary>
Favorites = 3,
/// <summary>
/// Eine Menü-App
/// </summary>
Menu = 4,
/// <summary>
/// Eine Citrix-App
/// </summary>
Citrix = 5
}
}