EmailScheduler/MailCore.framework/Versions/A/Headers/MCOAbstractMultipart.h
2014-09-13 17:13:32 -05:00

24 lines
480 B
Objective-C

//
// MCOAbstractMultipart.h
// mailcore2
//
// Created by DINH Viêt Hoà on 3/10/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCOABSTRACTMULTIPART_H
#define MAILCORE_MCOABSTRACTMULTIPART_H
#import <Foundation/Foundation.h>
#import <MailCore/MCOAbstractPart.h>
@interface MCOAbstractMultipart : MCOAbstractPart
/** Returns the subparts of that multipart.*/
@property (nonatomic, copy) NSArray * /* MCOAbstractPart */ parts;
@end
#endif