32 lines
529 B
C#
32 lines
529 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RealEstate
|
|
{
|
|
public class Seller
|
|
{
|
|
public int Id
|
|
{
|
|
get; set;
|
|
}
|
|
public string Name
|
|
{
|
|
get; set;
|
|
}
|
|
public string Phone
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public Seller(int id, string nev, string tel)
|
|
{
|
|
Id = id;
|
|
Name = nev;
|
|
Phone = tel;
|
|
}
|
|
}
|
|
}
|