This commit is contained in:
fabjuuuh
2020-09-30 14:37:40 +02:00
parent 41e77ba16c
commit f777b583f5
6 changed files with 64 additions and 8 deletions

14
DokterApp/UserTab.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace DokterApp
{
class UserTab : Tab
{
public UserTab()
{
Name = "Piet";
}
}
}