aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPFolderInfo.h
blob: ad564fdc1777c520e445d8aa714071e529930439 (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
//
//  MCOIMAPFolderInfo.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/25/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#import <Foundation/Foundation.h>

#ifndef __MAILCORE_MCOIMAPFOLDERINFO_H_

#define __MAILCORE_MCOIMAPFOLDERINFO_H_

@interface MCOIMAPFolderInfo : NSObject

+ (MCOIMAPFolderInfo *) info;

@property (nonatomic, assign) uint32_t uidNext;
@property (nonatomic, assign) uint32_t uidValidity;
@property (nonatomic, assign) uint64_t modSequenceValue;
@property (nonatomic, assign) int messageCount;

@end

#endif