SAB-E02/Blog.DAL/Model/Post.cs
2017-04-09 12:48:18 +02:00

15 lines
252 B
C#

using System.ComponentModel.DataAnnotations;
namespace Blog.DAL.Model
{
public class Post
{
[Key]
public long Id { get; set; }
public string Content { get; set; }
public string Author { get; set; }
}
}