14 lines
283 B
C#
14 lines
283 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Forum.DataAccessLayer.Models
|
|
{
|
|
public class Category
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string CategoryName { get; set; }
|
|
|
|
public virtual ICollection<Question> Questions { get; set; }
|
|
}
|
|
}
|