mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 12:02:40 +00:00
15 lines
299 B
C#
15 lines
299 B
C#
using System;
|
|
namespace Globals.Interfaces
|
|
{
|
|
public interface IPerson
|
|
{
|
|
int Id { get; set; }
|
|
string name { get; set; }
|
|
string lastname { get; set; }
|
|
string adress { get; set; }
|
|
string gsm { get; set; }
|
|
double balance { get; set; }
|
|
|
|
}
|
|
}
|