blob: 9a67ff825c553369c8696d155a9f63611bf9b03a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// MCOIMAPMultipart.h
// mailcore2
//
// Created by DINH Viêt Hoà on 3/23/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#import <mailcore/MCOAbstractMultipart.h>
#ifndef __MAILCORE_MCOIMAPMULTIPART_H_
#define __MAILCORE_MCOIMAPMULTIPART_H_
@interface MCOIMAPMultipart : MCOAbstractMultipart <NSCopying>
@property (nonatomic, copy) NSString * partID;
@end
#endif
|