aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPFolderStatus.m
blob: ceab8a0038bb53b36af612b563d25920b88aed20 (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
33
34
35
//
//  MCOIMAPFolderStatus.m
//  mailcore2
//
//  Created by Sebastian on 6/5/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#import "MCOIMAPFolderStatus.h"


@implementation MCOIMAPFolderStatus {
    uint32_t total_unseen;
    uint32_t total_messages;
    uint32_t total_recent;
    uint32_t _uidNext;
    uint32_t _uidValidity;
}

@synthesize uidNext = _uidNext;
@synthesize uidValidity = _uidValidity;
@synthesize totalMessages = total_messages;
@synthesize totalRecent = total_recent;
@synthesize totalUnseen = total_unseen;



+ (MCOIMAPFolderStatus *) status
{
    return [[[MCOIMAPFolderStatus alloc] init] autorelease];
}



@end