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 SchoolRole : TableEntity { public string SchoolCode { get; set; } public string SchoolName { get; set; } public string RoleName { get; set; } public string RoleCode { get; set; } public int RoleLevel { get; set; } public string RoleLevelName { get; set; } public string Remarks { get; set; } public int Status { get; set; } } }