AssistantPlus/assistant+/assistantplusapp/APCaptureGroupCommand.h
ZaidElkurdi 6ada354e53 - Capture Group Commands
- Run commands with NSTask
2015-04-17 15:41:42 -07:00

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