2018-02-11 20:55:29 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.DynamicLinq.Dal.Pocos
|
|
|
|
|
{
|
|
|
|
|
public class Comment
|
|
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public long PostId { get; set; }
|
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
public string CommentText { get; set; }
|
|
|
|
|
public Post Post { get; set; }
|
2018-03-22 19:16:57 -04:00
|
|
|
|
public ICollection<CommentLike> CommentLikes { get; set; }
|
2018-02-11 20:55:29 -05:00
|
|
|
|
}
|
|
|
|
|
}
|