mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-05-17 04:37:53 +00:00
18 lines
380 B
Dart
Executable File
18 lines
380 B
Dart
Executable File
// ignore_for_file: file_names
|
|
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
class WorkGroup extends Equatable {
|
|
final String? wid;
|
|
final String? nickname;
|
|
|
|
const WorkGroup({this.wid, this.nickname}) : super();
|
|
|
|
static WorkGroup fromJson(dynamic json) {
|
|
return WorkGroup(wid: json['wid'], nickname: json['nickname']);
|
|
}
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|