RealEstate1/RealEstate/Category.cs
2024-04-04 12:17:48 +02:00

28 lines
444 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealEstate
{
public class Category
{
public int Id
{
get; set;
}
public string Name
{
get; set;
}
public Category(int id, string nev)
{
Id = id;
Name = nev;
}
}
}