MOLiveActivityForAnchor.h 518 B

123456789101112131415161718192021
  1. //
  2. // MOLiveActivityForAnchor.h
  3. //
  4. // Created by SuperCabbage on 2025/8/13
  5. // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOLiveActivityForAnchor : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSArray *jumpList;
  10. @property (nonatomic, strong) NSString *icon;
  11. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  12. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  13. - (NSDictionary *)dictionaryRepresentation;
  14. @end