mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 20:12:40 +00:00
24 lines
460 B
C#
24 lines
460 B
C#
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|