Add project files.

This commit is contained in:
2025-08-01 13:31:40 +03:00
parent be778068c1
commit 3301e17f22
6 changed files with 222 additions and 0 deletions

17
Program.cs Normal file
View File

@@ -0,0 +1,17 @@
namespace DugunSalonu
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}