25 lines
477 B
Objective-C
25 lines
477 B
Objective-C
//
|
|
// 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
|