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

#ifndef MAILCORE_MCONNTPGROUPINFO_H

#define MAILCORE_MCONNTPGROUPINFO_H

#import <Foundation/Foundation.h>

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

@interface MCONNTPGroupInfo : NSObject <NSCopying>

/** The name of the news group. */
@property (nonatomic, copy) NSString *name;

/** The number of messages in the news group. */
@property (nonatomic, assign) unsigned int messageCount;

@end

#endif