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

22 lines
478 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Forum.DataAccessLayer.Models
{
2018-12-01 22:41:14 +01:00
public class Answer
{
2018-12-01 22:41:14 +01:00
public int Id { get; set; }
public DateTime Date { get; set; }
public string Content { get; set; }
public string Nick { get; set; }
public ProfessionalUser Professional { get; set; }
public Question Question { get; set; }
}
}