MusicModel.h 235 B

12345678910111213
  1. //
  2. // MusicModel.h
  3. // FreeMusic
  4. //
  5. //
  6. #import <Foundation/Foundation.h>
  7. @interface MusicModel : NSObject
  8. @property (nonatomic) NSInteger type;
  9. @property (nonatomic) NSInteger songid;
  10. @property (nonatomic,copy) NSString *name;
  11. @end