Forum-Inzynieria1/Trunk/Components/Forum.DataAccessLayer.Models/Category.cs

14 lines
283 B
C#
Raw Normal View History

2018-12-18 15:42:39 +01:00
using System.Collections.Generic;
namespace Forum.DataAccessLayer.Models
{
2018-12-01 22:41:14 +01:00
public class Category
{
2018-12-01 23:31:52 +01:00
public int Id { get; set; }
2018-12-01 22:41:14 +01:00
public string CategoryName { get; set; }
public virtual ICollection<Question> Questions { get; set; }
}
}