This commit is contained in:
Yao
2025-01-11 14:58:16 +08:00
parent f82486e8b0
commit 1095c32599
262 changed files with 62730 additions and 36131 deletions

View File

@@ -0,0 +1,19 @@
//
// PushRecordDataModel.h
//
// Created by on 2025/1/11
// Copyright (c) 2025 zL. All rights reserved.
//
#import <Foundation/Foundation.h>
@class PushRecordData;
@interface PushRecordDataModel : NSObject <NSCoding, NSCopying>
@property (nonatomic, strong) PushRecordData *data;
@property (nonatomic, assign) NSInteger code;
+ (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- (instancetype)initWithDictionary:(NSDictionary *)dict;
- (NSDictionary *)dictionaryRepresentation;
@end