mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-05-23 14:56:08 +08:00
23 lines
642 B
Objective-C
23 lines
642 B
Objective-C
//
|
|
// TweakPreferencesController.h
|
|
// WeChatTweak
|
|
//
|
|
// Created by Sunnyyoung on 2017/8/12.
|
|
// Copyright © 2017年 Sunnyyoung. All rights reserved.
|
|
//
|
|
|
|
#import "WeChatTweakHeaders.h"
|
|
|
|
typedef NS_ENUM(NSUInteger, RevokeNotificationType) {
|
|
RevokeNotificationTypeFollow = 0,
|
|
RevokeNotificationTypeReceiveAll,
|
|
RevokeNotificationTypeDisable,
|
|
};
|
|
|
|
static NSString * const WeChatTweakPreferenceAutoAuthKey = @"WeChatTweakPreferenceAutoAuthKey";
|
|
static NSString * const WeChatTweakPreferenceRevokeNotificationTypeKey = @"WeChatTweakPreferenceRevokeNotificationTypeKey";
|
|
|
|
@interface TweakPreferencesController : NSViewController
|
|
|
|
@end
|