123456789101112131415161718192021 |
- using MessagePack;
- using Microsoft.WindowsAzure.Storage.Table;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Model.Syllabus.Models
- {
- [MessagePackObject(keyAsPropertyName: true)]
- public class TextbookStruct: TableEntity
- {
- /// <summary>
- /// 1.学段,2.学科,3.版本,4.册别
- /// </summary>
- public string Type { get; set; }
- public string PCode { get; set; }
- public string Code { get; set; }
- public string Name { get; set; }
- public bool Template { get; set; }
- }
- }
|