using SqlSugar;
namespace Tiobon.Core.Model.Models;
///
/// 博客文章 评论
///
public class TiobonArticleComment : RootEntityTkey
{
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; }
}