| 1234567891011121314151617181920 |
- //
- // BGSoundEffectModel.h
- // BuguLive
- //
- // Created by bugu on 2019/12/11.
- // Copyright © 2019 xfg. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface BGSoundEffectModel : NSObject
- @property(nonatomic, strong) NSString *id;
- @property(nonatomic, strong) NSString *name;
- @property(nonatomic, strong) NSString *url;
- @end
- NS_ASSUME_NONNULL_END
|