Files
YTLitePlus/Tweaks/iSponsorBlock/Headers/SponsorSegmentView.h
2023-06-27 09:54:41 +02:00

12 lines
452 B
Objective-C

#import <UIKit/UIKit.h>
#import "SponsorSegment.h"
#import "SponsorBlockRequest.h"
@interface SponsorSegmentView : UIView
@property (strong, nonatomic) SponsorSegment *sponsorSegment;
@property (nonatomic, assign) BOOL editable;
@property (strong, nonatomic) UILabel *segmentLabel;
@property (strong, nonatomic) UILabel *categoryLabel;
- (instancetype)initWithFrame:(CGRect)frame sponsorSegment:(SponsorSegment *)segment editable:(BOOL)editable;
@end