ThingsAddViewController.h 994 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ThingsAddViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/8/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDTableViewController.h"
  9. @class CustomLabel;
  10. @interface ThingsAddViewController : JDTableViewController
  11. #pragma mark - Properties
  12. @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxTitle;
  13. @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxInfo;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxSubTitle;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxSubInfo;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblDawonPlugTitle;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblDawonPlugInfo;
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblFoscamTitle;
  19. @property (weak, nonatomic) IBOutlet CustomLabel *lblFoscamInfo;
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblGeofenceTitle;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblGeofenceInfo;
  22. #pragma mark - Instance Methods
  23. @end