13 lines
344 B
C#
13 lines
344 B
C#
|
|
namespace RIZO.Model.Content.Dto
|
|||
|
|
{
|
|||
|
|
public class ArticlePraiseDto
|
|||
|
|
{
|
|||
|
|
public long UserId { get; set; }
|
|||
|
|
public long ArticleId { get; set; }
|
|||
|
|
public string UserIP { get; set; }
|
|||
|
|
public long ToUserId { get; set; }
|
|||
|
|
public int IsDelete { get; set; }
|
|||
|
|
public string Location { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|