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