You've already forked Task-Master-2.0
mirror of
https://github.com/MrLyallCSIT/Task-Master-2.0.git
synced 2026-01-18 07:09:38 +00:00
Task Master 1.0 Code Pull
This commit is contained in:
31
Task Master/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthCredential.h
generated
Executable file
31
Task Master/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthCredential.h
generated
Executable file
@@ -0,0 +1,31 @@
|
||||
/** @file FIRAuthCredential.h
|
||||
@brief Firebase Auth SDK
|
||||
@copyright Copyright 2015 Google Inc.
|
||||
@remarks Use of this SDK is subject to the Google APIs Terms of Service:
|
||||
https://developers.google.com/terms/
|
||||
*/
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/** @class FIRAuthCredential
|
||||
@brief Represents a credential.
|
||||
*/
|
||||
@interface FIRAuthCredential : NSObject
|
||||
|
||||
/** @property provider
|
||||
@brief Gets the name of the identity provider for the credential.
|
||||
*/
|
||||
@property(nonatomic, copy, readonly) NSString *provider;
|
||||
|
||||
/** @fn init
|
||||
@brief This is an abstract base class. Concrete instances should be created via factory
|
||||
methods available in the various authentication provider libraries (like the Facebook
|
||||
provider or the Google provider libraries.)
|
||||
*/
|
||||
- (instancetype)init NS_UNAVAILABLE;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user