Example #1
0
 public UnifiSession(UnifiAccount account) : base(account)
 {
 }
Example #2
0
 protected bool Equals(UnifiAccount other)
 {
     return(base.Equals(other) && string.Equals(IdentityServer, other.IdentityServer) &&
            string.Equals(ClientScope, other.ClientScope) && string.Equals(ClientSecret, other.ClientSecret));
 }