Files
peko-ios/YuMi/Modules/YMNewHome/Presenter/CreateEventPresenter.h
2025-05-12 17:37:58 +08:00

26 lines
577 B
Objective-C

//
// CreateEventPresenter.h
// YuMi
//
// Created by P on 2025/5/9.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface CreateEventPresenter : BaseMvpPresenter
- (void)createEventWithTitle:(NSString *)title
image:(UIImage *)image
uploadToHome:(BOOL)uploadToHome
roomId:(NSString *)roomId
startTime:(NSDate *)startTime
duration:(NSInteger)duration
content:(NSString *)content
notifyFans:(BOOL)notifyFans;
@end
NS_ASSUME_NONNULL_END