blob: 416747f3839cde82f80c07ffbb8ea500da82afd6 (
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
27
28
29
30
31
|
//
// 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
|