10 lines
82 B
Objective-C
10 lines
82 B
Objective-C
#import "Car.h"
|
|
|
|
|
|
@implementation Car
|
|
|
|
@synthesize make;
|
|
@synthesize model;
|
|
|
|
@end
|