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 Role : TableEntity { public string Name { get; set; } //public string Code { get; set; } public int Level { get; set; } public string LevelName { get; set; } public string Remarks { get; set; } public int Status { get; set; } } }