17 lines
249 B
Objective-C
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
|