mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 12:51:42 +03:00
22 lines
580 B
Objective-C
22 lines
580 B
Objective-C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
* Protocol to define an instance that can be enabled/disabled.
|
|
*/
|
|
@protocol MSEnable <NSObject>
|
|
|
|
@required
|
|
|
|
/**
|
|
* Enable/disable this instance and delete data on disabled state.
|
|
*
|
|
* @param isEnabled A boolean value set to YES to enable the instance or NO to disable it.
|
|
* @param deleteData A boolean value set to YES to delete data or NO to keep it.
|
|
*/
|
|
- (void)setEnabled:(BOOL)isEnabled andDeleteDataOnDisabled:(BOOL)deleteData;
|
|
|
|
@end
|