Base proj

This commit is contained in:
2022-04-18 13:38:04 +02:00
parent 8f687dd037
commit abb9b3f415
9 changed files with 2119 additions and 59 deletions

25
APP/Main.cs Normal file
View File

@@ -0,0 +1,25 @@
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 APP
{
public partial class Main : Form
{
public Main()
{
InitializeComponent();
}
private void loginToolStripMenuItem_Click(object sender, EventArgs e)
{
// TODO search for user in backend
}
}
}