28 lines
444 B
C#
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;
|
|
|
|
}
|
|
}
|
|
}
|