You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
366 B
17 lines
366 B
namespace Tiobon.Core.Model.Models;
|
|
|
|
/// <summary>
|
|
/// 博客文章 评论
|
|
/// </summary>
|
|
public class TiobonArticleComment : RootEntityTkey<long>
|
|
{
|
|
public long bID { get; set; }
|
|
|
|
public string Comment { get; set; }
|
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
[Navigate(NavigateType.OneToOne, nameof(UserId))]
|
|
public SysUserInfo User { get; set; }
|
|
} |