您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
381 B

using System;
using UnityEngine.Scripting;
namespace Unity.Services.Authentication.Models
{
[Serializable]
class OAuthAuthCodeResponse
{
[Preserve]
public OAuthAuthCodeResponse() {}
// Note, the response here is empty as there is no content in the response we need -
// the auth code is in the location header of the response.
}
}