Forum-Inzynieria1/Trunk/Components/Forum.DataAccessLayer.Models/Question.cs
2018-12-01 23:31:52 +01:00

32 lines
693 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Forum.DataAccessLayer.Models
{
public class Question
{
public int Id { get; set; }
public string Nick { get; set; }
public DateTime PostDate { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public bool IsClosed { get; set; }
[EmailAddress]
public string ReportersEmail { get; set; }
public Category Category { get; set; }
public virtual ICollection<Answer> Answers { get; set; }
}
}