22 lines
352 B
Objective-C
Executable File
22 lines
352 B
Objective-C
Executable File
//
|
|
// RoomSubsidyVC.h
|
|
// YaYin
|
|
//
|
|
// Created by dlan on 2023/1/14.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomSubsidyVC : BaseViewController
|
|
|
|
/** */
|
|
@property(nonatomic, strong) NSString *rid;
|
|
@property(nonatomic, assign) BOOL isLucky;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|