aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPMessagePart.h
blob: c455d336a72a00cf93c53b5a0df2de9661aadb75 (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
//
//  MCOIMAPMessagePart.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/23/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCOIMAPMESSAGEPART_H

#define MAILCORE_MCOIMAPMESSAGEPART_H

/** Represents a message part. */

#import <MailCore/MCOAbstractMessagePart.h>

@interface MCOIMAPMessagePart : MCOAbstractMessagePart <NSCoding>

/** A part identifier is of the form 1.2.1*/
@property (nonatomic, copy) NSString * partID;

@end

#endif