RoleIdentityClaim.cs 568 B

12345678910111213141516171819
  1. using Microsoft.WindowsAzure.Storage.Table;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. namespace TEAMModelOS.Model.Core.Models
  7. {
  8. [TableSpace(Name = "Core")]
  9. public class RoleIdentityClaim : TableEntity
  10. {
  11. public string RoleName { get; set; }
  12. public string RoleCode { get; set; }
  13. public int RoleLevel { get; set; }
  14. public string RoleLevelName { get; set; }
  15. public string ClaimType { get; set; }
  16. public int Order { get; set; }
  17. }
  18. }