vreksam/DAL/Domain/Post.cs

30 lines
645 B
C#
Raw Normal View History

2017-06-12 12:16:58 +03:00
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2017-06-12 12:16:58 +03:00
namespace DAL.Domain
{
public class Post
{
[Key]
public int PostId { get; set; }
[MaxLength(length: 128)]
[MinLength(length: 1)]
2017-06-12 12:16:58 +03:00
public string Title { get; set; }
[MaxLength(length: 1024)]
[MinLength(length: 1)]
2017-06-12 12:16:58 +03:00
public string Body { get; set; }
public DateTime CreationTime { get; set; }
[MaxLength(length: 128)]
[MinLength(length: 1)]
2017-06-12 12:16:58 +03:00
public string Author { get; set; }
public int ForumId { get; set; }
2017-06-12 12:16:58 +03:00
}
}