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
478 B
19 lines
478 B
2 years ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
import 'package:equatable/equatable.dart';
|
||
|
part 'exclude_pn_model.g.dart';
|
||
|
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class ExcludePnModel extends Equatable{
|
||
|
final String? phone;
|
||
|
final String? remark;
|
||
|
factory ExcludePnModel.fromJson(Map<String, dynamic> json) =>_$ExcludePnModelFromJson(json);
|
||
|
|
||
|
|
||
|
const ExcludePnModel({
|
||
|
required this.phone,
|
||
|
required this.remark,
|
||
|
});
|
||
|
@override
|
||
|
List<Object?> get props => [phone,remark];
|
||
|
}
|