aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPFolderInfo.h
blob: 8b058deb97e90b256af3c69556ec368be36c22f3 (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.
//

#ifndef __MAILCORE_MCOIMAPFOLDERINFO_H_

#define __MAILCORE_MCOIMAPFOLDERINFO_H_

#import <Foundation/Foundation.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