Files
yinmeng-ios/xplan-ios/Main/IM/MicroQueue/Model/MicroQueueItemModel.h
2021-10-21 17:59:11 +08:00

20 lines
404 B
Objective-C

//
// MicroQueueItemModel.h
// xplan-ios
//
// Created by 冯硕 on 2021/10/21.
//
#import "BaseObject.h"
NS_ASSUME_NONNULL_BEGIN
@class UserInfoModel, MicroModel;
@interface MicroQueueItemModel : BaseObject
///麦序的状态
@property (nonatomic, strong) MicroModel *microState;
///麦序上是否有人
@property (nonatomic, strong, nullable) UserInfoModel *userInfo;
@end
NS_ASSUME_NONNULL_END