21 lines
235 B
Mathematica
21 lines
235 B
Mathematica
|
|
//
|
||
|
|
// 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
|