mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
22 lines
395 B
Objective-C
22 lines
395 B
Objective-C
//
|
|
// RPCServerConfigDB.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 24.06.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RPCServerConfig.h"
|
|
|
|
@interface RPCServerConfigDB : NSObject
|
|
|
|
+ (RPCServerConfigDB*)sharedDB;
|
|
|
|
@property(nonatomic,readonly) NSMutableArray *db;
|
|
|
|
- (void)loadDB;
|
|
- (void)saveDB;
|
|
|
|
@end
|