forked from mvexel/MilkMaid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
RTMSearch.h
28 lines (23 loc) · 815 Bytes
/
RTMSearch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// RTMList.h
// MilkMaid
//
// Created by Gregamel on 3/11/10.
// Copyright 2010 JGA. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface RTMSearch : NSObject {
NSString* title;
NSString* searchType;
NSDictionary* searchParams;
NSDictionary* addParams;
NSString* addAttributes;
}
@property (copy) NSString* title;
@property (copy) NSString* searchType;
@property (retain) NSDictionary* searchParams;
@property (retain) NSDictionary* addParams;
@property (copy) NSString* addAttributes;
-(id)initWithTitle:(NSString *)aTitle searchType:(NSString *)aType searchParams:(NSDictionary *)aSearchParams addParams:(NSDictionary *)aAddParams;
-(id)initWithTitle:(NSString *)aTitle searchType:(NSString *)aType searchParams:(NSDictionary *)aSearchParams addAttributes:(NSString *)aAddAttributes;
@end