Add missing nullability flag on CreateAccount return value

This commit is contained in:
Dean Herbert 2021-02-15 17:02:07 +09:00
parent 9ad38ab20e
commit 3562fddc27
1 changed files with 1 additions and 1 deletions

View File

@ -111,6 +111,6 @@ public interface IAPIProvider
/// <param name="username">The username to create the account with.</param>
/// <param name="password">The password to create the account with.</param>
/// <returns>Any errors encoutnered during account creation.</returns>
RegistrationRequest.RegistrationRequestErrors CreateAccount(string email, string username, string password);
RegistrationRequest.RegistrationRequestErrors? CreateAccount(string email, string username, string password);
}
}