Files
OrderScheduling/Pods/CocoaDebug/Sources/Network/_HttpModel.m
DDIsFriend 63ca919ed5 update
2023-08-23 09:24:40 +08:00

26 lines
357 B
Objective-C

//
// Example
// man
//
// Created by man 11/11/2018.
// Copyright © 2020 man. All rights reserved.
//
#import "_HttpModel.h"
@implementation _HttpModel
//default value for @property
- (id)init {
if (self = [super init]) {
self.statusCode = @"0";
self.url = [[NSURL alloc] initWithString:@""];
}
return self;
}
@end