using MessagePack; using System; using System.Collections.Generic; using System.Text; namespace HiTeachCC.Model.Core.Models { [MessagePackObject(keyAsPropertyName: true)] public class ClassRoom { public string id { get; set; } public string DeviceId { get; set; } public string RoomNo { get; set; } public string RoomName { get; set; } public string FileName { get; set; } public string FileUrl { get; set; } public string FileSha1Code { get; set; } public string FileType { get; set; } public long CreateTime { get; set; } public string TeamModelId { get; set; } public string Name { get; set; } } }