dotnet-dynamic-linq/PoweredSoft.DynamicLinq.Dal/Pocos/CommentLike.cs

18 lines
399 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PoweredSoft.DynamicLinq.Dal.Pocos
{
public class CommentLike
{
public long Id { get; set; }
public long CommentId { get; set; }
public DateTimeOffset CreateTime { get; set; }
public virtual Comment Comment { get; set; }
}
}