BGSoundEffectModel.h 393 B

1234567891011121314151617181920
  1. //
  2. // BGSoundEffectModel.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/12/11.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BGSoundEffectModel : NSObject
  11. @property(nonatomic, strong) NSString *id;
  12. @property(nonatomic, strong) NSString *name;
  13. @property(nonatomic, strong) NSString *url;
  14. @end
  15. NS_ASSUME_NONNULL_END