aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/abstract/MCOAbstractMessagePart.h
blob: 75cda3cd0ed4917cfd6233f4a2df121bf31d330e (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
25
26
//
//  MCOAbstractMessagePart.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/10/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCOABSTRACTMESSAGEPART_H_

#define __MAILCORE_MCOABSTRACTMESSAGEPART_H_

#import <Foundation/Foundation.h>
#import <mailcore/MCOAbstractPart.h>

@class MCOMessageHeader;

@interface MCOAbstractMessagePart : MCOAbstractPart

@property (nonatomic, strong) MCOMessageHeader * header;
@property (nonatomic, strong) MCOAbstractPart * mainPart;

@end

#endif