Topic.cs
696 Bytes
using System;
using System.Collections.Generic;
using System.Text;
using Quiz.Utility;
namespace Quiz.Models
{
public class Topic
{
public int ID { get; set; }
public string Question { get; set; }
public string A { get; set; }
public string B { get; set; }
public string C { get; set; }
public string D { get; set; }
public string Answer { get; set; }
public int TopicType { get; set; }
public DateTime Intime { get; set; }
public string Detail { get; set; }
public string TitleOne { get; set; }
public string TitleTwo { get; set; }
public string TitleTree { get; set; }
}
}