ClassRoom.cs 709 B

1234567891011121314151617181920212223
  1. using MessagePack;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace HiTeachCC.Model.Core.Models
  6. {
  7. [MessagePackObject(keyAsPropertyName: true)]
  8. public class ClassRoom
  9. {
  10. public string id { get; set; }
  11. public string DeviceId { get; set; }
  12. public string RoomNo { get; set; }
  13. public string RoomName { get; set; }
  14. public string FileName { get; set; }
  15. public string FileUrl { get; set; }
  16. public string FileSha1Code { get; set; }
  17. public string FileType { get; set; }
  18. public long CreateTime { get; set; }
  19. public string TeamModelId { get; set; }
  20. public string Name { get; set; }
  21. }
  22. }