ArticleLabel.cs 387 B

123456789101112131415161718
  1. using Datory.Annotations;
  2. namespace GxPress.Entity.ArticleLabel
  3. {
  4. /// <summary>
  5. /// 文章标签
  6. /// </summary>
  7. [DataTable("tede_article_label")]
  8. public class ArticleLabel : Datory.Entity
  9. {
  10. /// <summary>
  11. /// 标签名称
  12. /// </summary>
  13. /// <value></value>
  14. [DataColumn]
  15. public string LabelName { get; set; }
  16. }
  17. }