mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 14:02:28 +00:00
18 lines
300 B
Objective-C
18 lines
300 B
Objective-C
//
|
|
// MPAutotypeCommand.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 10/11/13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface MPAutotypeCommand : NSObject
|
|
|
|
@property (copy) NSString *commandString;
|
|
|
|
- (void)execute;
|
|
|
|
@end
|