19 lines
325 B
Objective-C
19 lines
325 B
Objective-C
//
|
|
// AuthorizationProgressViewController.h
|
|
// HotPocket (iOS)
|
|
//
|
|
// Created by Tomek Wójcik on 25/09/2025.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface AuthorizationProgressViewController : UIViewController
|
|
|
|
@property IBOutlet UIActivityIndicatorView *progressIndicator;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|