20 lines
404 B
Objective-C
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
|