aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/nntp/MCONNTPMessageInfo.h
blob: d4f06b04e3ea48317cda4f8fb03db2fc24c6c0af (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
//
//  MCONNTPMessageInfo.h
//  mailcore2
//
//  Created by Robert Widmann on 8/13/14.
//  Copyright (c) 2014 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCONNTPMESSAGEINFO_H

#define MAILCORE_MCONNTPMESSAGEINFO_H

#import <Foundation/Foundation.h>

/** This is information of a message fetched by MCONNTPFetchArticlesOperation.*/

@interface MCONNTPMessageInfo : 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