using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Table; namespace TEAMModelOS.Model.Common.Models { [TableSpace(Name = "Common")] public class Role : TableEntity { public string Name { get; set; } public string Code { get; set; } public int Level { get; set; } public int Status { get; set; } } }