using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.Core.Models { [TableSpace(Name = "Core")] public class Period : TableEntity { /// /// 名称 /// public string Name { get; set; } /// /// 别名 /// public string Alias { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 语言版本 /// public string Lang { get; set; } } }