This commit is contained in:
Michiel.VanDorpe
2019-03-13 16:37:03 +01:00
parent 10cdcbbd00
commit 60eb72bd30
99 changed files with 5061 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Logic.General;
namespace Logic
{
public class Persoon
{
public int ID { get; set; }
public string Voornaam { get; set; }
public string Naam { get; set; }
public string Adres { get; set; }
public string Gsm { get; set; }
public double Balans { get; set; }
}
}