SkillsContent.cs 486 B

1234567891011121314151617181920
  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("SkillsContent"), PrimaryKey("skillsid")]
  10. public class SkillsContent
  11. {
  12. public int skillsid { get; set; }
  13. public string content { get; set; }
  14. public string headline { get; set; }
  15. public string author { get; set; }
  16. public DateTime updatetime { get; set; }
  17. }
  18. }