33 lines
524 B
Objective-C
33 lines
524 B
Objective-C
//
|
|
// MewMainHomeMakeFriendModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2023/12/25.
|
|
//
|
|
|
|
#import "MewMainHomeMakeFriendModel.h"
|
|
|
|
@implementation MewMainHomeMakeFriendModel
|
|
- (NSString *)playUrl{
|
|
|
|
if(self.voiceCard.propVals.count == 2){
|
|
return self.voiceCard.propVals.firstObject;
|
|
}
|
|
return @"";
|
|
}
|
|
- (NSString *)playTime{
|
|
|
|
if(self.voiceCard.propVals.count == 2){
|
|
return self.voiceCard.propVals[1];
|
|
}
|
|
return @"";
|
|
}
|
|
@end
|
|
|
|
|
|
@implementation MewMainHomeMakeFriendCardModel
|
|
|
|
|
|
|
|
@end
|