You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
409 B
19 lines
409 B
5 years ago
|
/*
|
||
|
* ====================================================
|
||
|
* package :
|
||
|
* author : Created by nansi.
|
||
|
* time : 2019-08-14 10:25
|
||
|
* remark :
|
||
|
* ====================================================
|
||
|
*/
|
||
|
|
||
|
// import 'package:flutter/material.dart';
|
||
|
|
||
|
class HttpResultModel<T> {
|
||
|
String code;
|
||
|
T data;
|
||
|
String msg;
|
||
|
bool result;
|
||
|
|
||
|
HttpResultModel(this.code, this.data, this.msg,this.result);
|
||
|
}
|