12345678910111213141516171819 |
- 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 RoleIdentityClaim : TableEntity
- {
- public string RoleName { get; set; }
- public string RoleCode { get; set; }
- public int RoleLevel { get; set; }
- public string RoleLevelName { get; set; }
- public string ClaimType { get; set; }
- public int Order { get; set; }
- }
- }
|