hotpocket/services/apple/macOS (Share Extension)/ShareViewController.h

25 lines
493 B
Objective-C

//
// ShareViewController.h
// macOS (Share Extension)
//
// Created by Tomek Wójcik on 22/09/2025.
//
#import <Cocoa/Cocoa.h>
@class HPAPI;
@interface ShareViewController : NSViewController
@property HPAPI *api;
@property BOOL savingViewHidden;
@property BOOL needsSetupViewHidden;
@property BOOL doneViewHidden;
@property BOOL errorViewHidden;
@property BOOL unprocessableEntityViewHidden;
@property NSString *uname;
@property IBOutlet NSProgressIndicator *progressIndicator;
@end