1234567891011121314151617181920 |
- 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 RoleIdentityClaimValue :TableEntity
- {
- public string TeamModelId { get; set; }
- public string RoleCode { get; set; }
- public string ClaimType { get; set; }
- public string ClaimCode { get; set; }
- public int ClaimOrder { get; set; }
- public string GroupKey { get; set; }
- public string ClaimName { get; set; }
- }
- }
|