mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-05-17 04:37:53 +00:00
23 lines
514 B
Dart
Executable File
23 lines
514 B
Dart
Executable File
// ignore_for_file: file_names
|
|
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
class MarkThreadResult extends Equatable {
|
|
//
|
|
final String? message;
|
|
final int? statusCode;
|
|
final String? tid;
|
|
|
|
const 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 => [tid!];
|
|
}
|