1234567891011121314151617 |
- //
- // SubmitDiscountCardCell.h
- // FirstLink
- //
- // Created by jack on 15/6/19.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- // 代金券
- #import <UIKit/UIKit.h>
- @interface SubmitDiscountCardCell : UITableViewCell
- @property (nonatomic, strong, readonly) UILabel *titleLabel;
- @property (nonatomic, strong, readonly) UILabel *disCountLabel;
- @property (nonatomic, strong, readonly) UIButton *actionButton;
- @property (nonatomic, strong) UIView *bottomLine;
- @end
|