| 123456789101112131415161718192021 |
- //
- // HJLabelRightContentView.h
- // HappyJob
- //
- // Created by 张晓光 on 2021/2/7.
- // Copyright © 2021 Bob. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HJLabelRightContentView : UIView
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *contentLabel;
- @property (nonatomic, strong) UIView *lineView;
- @end
- NS_ASSUME_NONNULL_END
|