Theeaxe

Lynda Command Line - Employee.h

Apr 30th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. //  Employee.h
  3. //  Test-Command-Line
  4. //
  5. //  Created by Masen Beliveau on 4/30/14.
  6. //  Copyright (c) 2014 KidCO. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11. @interface Employee : NSObject
  12.  
  13. @property NSString *firstName;
  14. @property NSString *lastName;
  15. @property NSDate *hireDate;
  16. @property int *employeeNumber;
  17.  
  18. @end
Advertisement
Add Comment
Please, Sign In to add comment