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; }
    }
}