Files
peko-ios/YuMi/Structure/MVP/Model/RelationUserVO.m
2024-09-19 16:52:32 +08:00

17 lines
249 B
Objective-C

//
// RelationUserVO.m
// YuMi
//
// Created by P on 2024/9/19.
//
#import "RelationUserVO.h"
@implementation RelationUserVO
- (BOOL)isEmptyRelation {
return self.cpAvatar.length == 0 || self.cpUid == 0 || self.cpNick.length == 0;
}
@end