19 lines
460 B
C#
19 lines
460 B
C#
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; }
|
|
}
|
|
}
|