|
@@ -560,10 +560,11 @@ namespace Hotline.Share.Dtos.Article
|
|
/// </summary>
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
+ private string content;
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 内容
|
|
/// 内容
|
|
/// </summary>
|
|
/// </summary>
|
|
- public string Content { get; set; }
|
|
|
|
|
|
+ public string Content { get { return content.RemoveHtmlTags(); } set { content = value; } }
|
|
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
public DateTime CreationTime { get; set; }
|
|
}
|
|
}
|