2018-12-18 15:42:39 +01:00
|
|
|
|
using System.Collections.Generic;
|
2018-12-01 22:12:59 +01:00
|
|
|
|
|
|
|
|
|
namespace Forum.DataAccessLayer.Models
|
|
|
|
|
{
|
2018-12-01 22:41:14 +01:00
|
|
|
|
public class Category
|
2018-12-01 22:12:59 +01:00
|
|
|
|
{
|
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; }
|
2018-12-01 22:12:59 +01:00
|
|
|
|
}
|
|
|
|
|
}
|