using System; namespace service; [Serializable] public class PostModel { public int Id { get; set; } public int UserId { get; set; } public string Title { get; set; } public string Body { get; set; } }