Files
yuyin_ios/SweetParty/常用工具/svga缓存类/AOESVGAEntity.h
2025-08-08 11:05:33 +08:00

46 lines
812 B
Objective-C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// AOESVGAEntity.h
// AOESVGASimple
//
// Created by 夏宁忠 on 2018/3/9.
// Copyright © 2018年 夏宁忠. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface AOESVGAEntity : NSObject
/**
svga文件版本:如果存在本地存储可能出现URL相同但服务端文件已经更新
*/
@property (nonatomic, strong)NSString *svga_version;
/**
SVGA URL 网络/本地
*/
@property (nonatomic, strong)NSString *svga_url;
/**
SVGA 标题
*/
@property (nonatomic, strong)NSString *svga_title;
/**
SVGA 描述
*/
@property (nonatomic, strong)NSString *svga_description;
/**
SVGA 基于父视图的位置
*/
@property (nonatomic, assign)CGRect svga_forSupviewRect;
/**
SVGA 显示的父视图
*/
@property (nonatomic, strong)id superView;
@end