26 lines
577 B
Objective-C
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
|