23 lines
348 B
Objective-C
23 lines
348 B
Objective-C
//
|
|
// MainViewController.h
|
|
// HotPocket (iOS)
|
|
//
|
|
// Created by Tomek Wójcik on 22/09/2025.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MainViewController : NSViewController
|
|
|
|
@property IBOutlet NSTextField *instanceURLLabel;
|
|
|
|
@property BOOL logoutButtonEnabled;
|
|
|
|
-(IBAction)doLogOut:(id)sender;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|