20 lines
392 B
Objective-C
Executable File
20 lines
392 B
Objective-C
Executable File
//
|
|
// Lyrics.h
|
|
// iLyrics
|
|
//
|
|
// Created by Kim Wittenburg on 10.06.12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Lyrics : NSObject
|
|
|
|
@property NSString *name;
|
|
@property NSString *artist;
|
|
@property NSString *lyrics;
|
|
|
|
-(id)initWithName: (NSString*) name byArtist: (NSString*) artist withLyrics: (NSString*) lyrics;
|
|
|
|
@end
|