aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/pop/MCOPOPMessageInfo.h
blob: b1780a960059e6b96772e40b2cca90e9067ca2b6 (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