mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-23 03:48:31 +00:00
6ada354e53
- Run commands with NSTask
23 lines
624 B
Objective-C
23 lines
624 B
Objective-C
//
|
|
// APCaptureGroupCommand.h
|
|
// AssistantPlusApp
|
|
//
|
|
// Created by Zaid Elkurdi on 4/14/15.
|
|
// Copyright (c) 2015 Zaid Elkurdi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface APCaptureGroupCommand : NSObject
|
|
@property (nonatomic, strong) NSString *name;
|
|
@property (nonatomic, strong) NSArray *variables;
|
|
@property (nonatomic, strong) NSArray *conditionals;
|
|
@property (nonatomic, strong) NSString *trigger;
|
|
@property (nonatomic, strong) NSString *command;
|
|
@property (nonatomic, strong) NSString *uuid;
|
|
|
|
-(id)initWithDictionary:(NSDictionary*)dict;
|
|
- (NSDictionary*)dictionaryRepresentation;
|
|
|
|
@end
|