Forum-Inzynieria1/Trunk/Components/Forum.DataAccessLayer.Models/Question.cs

32 lines
693 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Forum.DataAccessLayer.Models
{
2018-12-01 22:41:14 +01:00
public class Question
{
2018-12-01 22:41:14 +01:00
public int Id { get; set; }
public string Nick { get; set; }
public DateTime PostDate { get; set; }
2018-12-01 23:31:52 +01:00
public string Title { get; set; }
2018-12-01 22:41:14 +01:00
public string Content { get; set; }
public bool IsClosed { get; set; }
[EmailAddress]
2018-12-01 22:41:14 +01:00
public string ReportersEmail { get; set; }
public Category Category { get; set; }
public virtual ICollection<Answer> Answers { get; set; }
}
}