AppDoebeln/TourismusDöbeln/Platforms/Tizen/Main.cs
2024-08-30 06:36:09 +02:00

18 lines
363 B
C#

using Microsoft.Maui;
using Microsoft.Maui.Hosting;
using System;
namespace TourismusDöbeln
{
internal class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}