mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 19:57:42 +00:00
20 lines
492 B
Objective-C
Executable File
20 lines
492 B
Objective-C
Executable File
//
|
|
// TDAudioMetaInfo.h
|
|
// TDAudioPlayer
|
|
//
|
|
// Created by Tony DiPasquale on 10/16/13.
|
|
// Copyright (c) 2013 Tony DiPasquale. The MIT License (MIT).
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TDAudioMetaInfo : NSObject
|
|
|
|
@property (strong, nonatomic) NSString *title;
|
|
@property (strong, nonatomic) NSString *artist;
|
|
@property (strong, nonatomic) NSString *albumArtSmall;
|
|
@property (strong, nonatomic) NSString *albumArtLarge;
|
|
@property (strong, nonatomic) NSNumber *duration;
|
|
|
|
@end
|