HegreHotel/Platforms/Tizen/Main.cs

16 lines
309 B
C#
Raw Permalink Normal View History

2025-01-16 15:22:30 +01:00
using System;
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace HegreHotel;
class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}