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

32 lines
729 B
Objective-C

//
// MCOPOPMessageInfo.h
// mailcore2
//
// Created by DINH Viêt Hoà on 3/30/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCOPOPMESSAGEINFO_H
#define MAILCORE_MCOPOPMESSAGEINFO_H
#import <Foundation/Foundation.h>
/** This is information of a message fetched by MCOPOPFetchMessagesOperation.*/
@interface MCOPOPMessageInfo : NSObject <NSCopying>
/** This is the index of a given message.*/
@property (nonatomic, assign) unsigned int index;
/** This is the size of the given message.*/
@property (nonatomic, assign) unsigned int size;
/** This is the unique identifier of the message.
It can be used as a cache identifier.*/
@property (nonatomic, copy) NSString * uid;
@end
#endif