JwtBlackRecord.cs 359 B

1234567891011121314
  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.SDK.Extension.JwtAuth.Models
  7. {
  8. [TableSpaceAttribute(Name = "Common")]
  9. public class JwtBlackRecord :TableEntity
  10. {
  11. public string Jti { get; set; }
  12. }
  13. }