| 123456789101112131415161718192021 |
- //
- // MOHelpList.h
- //
- // Created by SuperCabbage on 2023/11/22
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOUserProfile;
- @interface MOHelpList : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double num;
- @property (nonatomic, strong) MOUserProfile *user;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|