15 lines
203 B
C#
15 lines
203 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DokterApp
|
|
{
|
|
class UserTab : Tab
|
|
{
|
|
public UserTab()
|
|
{
|
|
Name = "Piet";
|
|
}
|
|
}
|
|
}
|