RealEstate1/RealEstate/Seller.cs

32 lines
529 B
C#
Raw Normal View History

2024-04-04 10:17:48 +00:00
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;
}
}
}