OASystemAuthentication.cs 307 B

1234567891011121314
  1. using Microsoft.AspNetCore.Mvc.Filters;
  2. using Microsoft.IdentityModel.Tokens;
  3. using System.IdentityModel.Tokens.Jwt;
  4. using IAuthorizationFilter = Microsoft.AspNetCore.Mvc.Filters.IAuthorizationFilter;
  5. namespace OASystem.API
  6. {
  7. public class OASystemAuthentication : AuthorizeAttribute
  8. {
  9. }
  10. }