17 lines
405 B
C#
17 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MultipleChoiceTrainer.Models.DataModels
|
|
{
|
|
public class Category
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public ICollection<Section> Sections { get; set; } = new HashSet<Section>();
|
|
}
|
|
}
|