Term.cs 598 B

123456789101112131415161718192021222324
  1. using MC.ORM;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CP.Model.other
  8. {
  9. [TableName("term"), PrimaryKey("id")]
  10. public class Term
  11. {
  12. public int id { get; set; }
  13. public string headline { get; set; }
  14. public string content { get; set; }
  15. public string title { get; set; }
  16. public string description { get; set; }
  17. public string keywords { get; set; }
  18. public string typename { get; set; }
  19. public DateTime createdatetime { get; set; }
  20. }
  21. }