2026-01-23 10:13:53 +08:00

18 lines
360 B
C#

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