initial commit

This commit is contained in:
2022-04-27 08:37:00 +02:00
parent 1b18489570
commit b448dbf23a
6 changed files with 240 additions and 0 deletions

21
Form1.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace it_projekt
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}