// // YMCreateGreetingTemplateViewModel.h // MSYOUPAI // // Created by YoMi on 2024/2/24. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface YMCreateGreetingTemplateViewModel : MSYOUPAIViewModel /// 模板最大上限 @property (nonatomic, assign, readonly) NSInteger templateMaxLength; /// 模板文本 @property (nonatomic, copy) NSString *templateText; /// 模板图片 @property (nonatomic, copy) NSString *templateImageUrl; /// 模板语音本地链接 @property (nonatomic, copy) NSURL *templateVoiceLocalUrl; /// 模板语音网络链接 @property (nonatomic, copy) NSString *templateVoiceNetworkUrl; /// 模板语音时长 @property (nonatomic, assign) NSInteger templateVoiceDuration; /// 打开图片选择器 - (void)openImagePickerPopupView; /// 提交打招呼模板 - (void)submitGreetingTemplate; @end NS_ASSUME_NONNULL_END