17 lines
339 B
Objective-C
17 lines
339 B
Objective-C
//
|
|
// Api+FirstRecharge.m
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/23.
|
|
//
|
|
|
|
#import "Api+FirstRecharge.h"
|
|
|
|
@implementation Api (FirstRecharge)
|
|
|
|
+ (void)firstchargeInfo:(HttpRequestHelperCompletion)completion {
|
|
[self makeRequest:@"firstcharge/info" method:HttpRequestHelperMethodGET completion:completion, __FUNCTION__, nil];
|
|
}
|
|
|
|
@end
|