mirror of
https://github.com/samsonjs/5by5Browser.git
synced 2026-04-11 11:55:46 +00:00
21 lines
409 B
Objective-C
21 lines
409 B
Objective-C
//
|
|
// FiveByFive.h
|
|
// 5by5Browser
|
|
//
|
|
// Created by Sami Samhuri on 11-12-17.
|
|
// Copyright (c) 2011 Guru Logic. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class Show;
|
|
|
|
@interface FiveByFive : NSObject
|
|
|
|
@property (nonatomic, retain) NSString *baseURL;
|
|
@property (nonatomic, retain) NSMutableArray *shows;
|
|
|
|
- (id) initWithBaseURL: (NSString *)baseURL;
|
|
- (void) addShow: (Show *)show;
|
|
|
|
@end
|