aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPMultipart.h
blob: 408b6593d41e3bd93f8afcac9ca926bfee44792c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  MCOIMAPMultipart.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/23/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCOIMAPMULTIPART_H_

#define __MAILCORE_MCOIMAPMULTIPART_H_

/** Represents the a multipart retrieved from IMAP */

#import <MailCore/MCOAbstractMultipart.h>

@interface MCOIMAPMultipart : MCOAbstractMultipart

/** A part identifier looks like 1.2.1 */
@property (nonatomic, copy) NSString * partID;

@end

#endif