Option.cs 545 B

12345678910111213141516171819202122
  1. using MessagePack;
  2. using Microsoft.WindowsAzure.Storage.Table;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. using TEAMModelOS.SDK.Context.Attributes.Azure;
  7. namespace TEAMModelOS.Model.EvaluaTion.Models
  8. {
  9. [TableSpace(Name = "Core")]
  10. [MessagePackObject(keyAsPropertyName: true)]
  11. /// <summary>
  12. /// 选项信息
  13. /// </summary>
  14. public class Option : TableEntity
  15. {
  16. public string Id { get; set; }
  17. public string Data { get; set; }
  18. public string ItemId { get; set; }
  19. }
  20. }