28 lines
461 B
Objective-C
28 lines
461 B
Objective-C
//
|
|
// MessageMenuModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/4/21.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSInteger, MessageMenuType) {
|
|
///发送图片
|
|
MessageMenuType_Photo = 1,
|
|
///送礼物
|
|
MessageMenuType_Gift
|
|
};
|
|
|
|
@interface MessageMenuModel : PIBaseModel
|
|
///图片
|
|
@property (nonatomic,strong) NSString *imageName;
|
|
///类型
|
|
@property (nonatomic,assign) MessageMenuType type;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|