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

#import "MCOIMAPFolderInfo.h"

@implementation MCOIMAPFolderInfo {
    uint32_t _uidNext;
    uint32_t _uidValidity;
    uint64_t _modSequenceValue;
    int _messageCount;
    uint32_t _firstUnseenUid;
    BOOL _allowsNewPermanentFlags;
}

@synthesize uidNext = _uidNext;
@synthesize uidValidity = _uidValidity;
@synthesize modSequenceValue = _modSequenceValue;
@synthesize messageCount = _messageCount;
@synthesize firstUnseenUid = _firstUnseenUid;
@synthesize allowsNewPermanentFlags = _allowsNewPermanentFlags;

+ (MCOIMAPFolderInfo *) info
{
    return [[[MCOIMAPFolderInfo alloc] init] autorelease];
}

@end