Comment.cs 570 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. using TEAMModelOS.SDK.DI;
  7. namespace TEAMModelOS.SDK.Models
  8. {
  9. /// <summary>
  10. /// 教师评语罐头
  11. /// </summary>
  12. public class Comment : CosmosEntity
  13. {
  14. public Comment(){
  15. comment = new List<string>();
  16. }
  17. /// <summary>
  18. /// 评语
  19. /// </summary>
  20. public List<string> comment { get; set; }
  21. }
  22. }