13 lines
344 B
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
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; }
}
}