20 lines
287 B
C
20 lines
287 B
C
|
|
//
|
||
|
|
// SPMineDressVC.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/6.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "BaseViewController.h"
|
||
|
|
#import "SPMineModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SPMineDressVC : BaseViewController
|
||
|
|
|
||
|
|
@property (nonatomic, strong) SPMineModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|