mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-08 12:21:08 +00:00
13 lines
294 B
Java
13 lines
294 B
Java
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
package com.tribufu.oauth2;
|
|
|
|
public class OAuth2CodeResponse {
|
|
public final String code;
|
|
public final String state;
|
|
|
|
public OAuth2CodeResponse(String code, String state) {
|
|
this.code = code;
|
|
this.state = state;
|
|
}
|
|
}
|