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.
21 lines
481 B
21 lines
481 B
3 years ago
|
import 'package:equatable/equatable.dart';
|
||
|
|
||
|
class MarkThreadResult extends Equatable {
|
||
|
//
|
||
|
final String? message;
|
||
|
final int? statusCode;
|
||
|
final String? tid;
|
||
|
|
||
|
MarkThreadResult({this.message, this.statusCode, this.tid}) : super();
|
||
|
|
||
|
static MarkThreadResult fromJson(dynamic json) {
|
||
|
return MarkThreadResult(
|
||
|
message: json["message"],
|
||
|
statusCode: json["status_code"],
|
||
|
tid: json["data"]);
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
List<Object> get props => [this.tid!];
|
||
|
}
|