12345678910111213141516171819202122 |
- using MessagePack;
- using Microsoft.WindowsAzure.Storage.Table;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.Model.EvaluaTion.Models
- {
- [TableSpace(Name = "Core")]
- [MessagePackObject(keyAsPropertyName: true)]
- /// <summary>
- /// 选项信息
- /// </summary>
- public class Option : TableEntity
- {
- public string Id { get; set; }
- public string Data { get; set; }
- public string ItemId { get; set; }
- }
- }
|