mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
19 lines
290 B
Objective-C
19 lines
290 B
Objective-C
//
|
|
// ThemeViewController.h
|
|
// libiSHApp
|
|
//
|
|
// Created by Saagar Jha on 7/16/22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Theme.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ThemeViewController : UITableViewController
|
|
@property Theme *theme;
|
|
@property BOOL isEditable;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|