| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ThingsAddViewController.h
- // kneet
- //
- // Created by Jason Lee on 5/8/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDTableViewController.h"
- @class CustomLabel;
- @interface ThingsAddViewController : JDTableViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxInfo;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxSubTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCommaxSubInfo;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDawonPlugTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDawonPlugInfo;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblFoscamTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblFoscamInfo;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblGeofenceTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblGeofenceInfo;
- #pragma mark - Instance Methods
- @end
|