[DataContract]
public class Post
{
public Post (int id,string title,string author)
{
this.Id = id;
this.Title = title;
this.Author = author;
}
[DataMember]
public int Id { get; set; }
[DataMember]
public string Title { get; set; }
[DataMember]
public string Author { get; set; }
}