2024-02-20 23:51:24 +04:00

13 lines
237 B
C#

namespace AutoWorkshopView
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}