| 123456789101112131415161718192021 |
- //
- // MOLiveActivityForAnchor.h
- //
- // Created by SuperCabbage on 2025/8/13
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOLiveActivityForAnchor : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *jumpList;
- @property (nonatomic, strong) NSString *icon;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|