驱蚊app
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

12 行
231 B

  1. using AppleAuth.Enums;
  2. namespace AppleAuth.Interfaces
  3. {
  4. public interface ICredentialStateResponse
  5. {
  6. bool Success { get; }
  7. CredentialState CredentialState { get; }
  8. IAppleError Error { get; }
  9. }
  10. }