/// <inheritdoc />
 public bool Equals(ITokenOption other)
 {
     return(Name == other.Name && Equals(Value, other.Value) && Persistent == other.Persistent);
 }
示例#2
0
 public AuthManager(IUserService userService, ITokenOption tokenOption)
 {
     _userService = userService;
     _tokenOption = tokenOption;
 }