cdts/xdts-ios 3/TreeHole/Code/Features/VIP/VIPCardInfo.m

21 lines
235 B
Mathematica
Raw Permalink Normal View History

2023-07-27 09:20:00 +08:00
//
// VIPCardInfo.m
// TreeHole
//
// Created by on 2022/5/2.
//
#import "VIPCardInfo.h"
@implementation VIPCardInfo
- (BOOL)isForever {
return _vip_kind == 100;
}
- (BOOL)isVIP {
return _vip_kind > 0;
}
@end