mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 03:52:45 +00:00
19 lines
410 B
C#
19 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataLaag.Interfaces
|
|
{
|
|
public interface IFPersoon
|
|
{
|
|
int persoon_ID { get; set; }
|
|
string voorNaam { get; set; }
|
|
string naam { get; set; }
|
|
string adres { get; set; }
|
|
string gsm { get; set; }
|
|
double balans { get; set; }
|
|
}
|
|
}
|