21 lines
402 B
C
21 lines
402 B
C
|
|
//
|
||
|
|
// YXYoungUseViewController.h
|
||
|
|
// romantic
|
||
|
|
//
|
||
|
|
// Created by MAC on 2022/12/15.
|
||
|
|
// Copyright © 2022 romantic. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "BaseController.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YXYoungUseViewController : BaseController
|
||
|
|
|
||
|
|
@property (nonatomic,assign) int type; //type == 1,标识需要开启青少年模式 ==2代表需要关闭青少年模式
|
||
|
|
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|