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.
27 lines
600 B
27 lines
600 B
import 'package:equatable/equatable.dart';
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'convenience_phone_model.g.dart';
|
|
|
|
|
|
@JsonSerializable()
|
|
class ConveniencePhoneModel extends Equatable {
|
|
final int id;
|
|
final String name;
|
|
final String tel;
|
|
final int type;
|
|
|
|
factory ConveniencePhoneModel.fromJson(Map<String, dynamic> json) =>
|
|
_$ConveniencePhoneModelFromJson(json);
|
|
|
|
const ConveniencePhoneModel({
|
|
required this.id,
|
|
required this.name,
|
|
required this.tel,
|
|
required this.type,
|
|
});
|
|
|
|
@override
|
|
List<Object?> get props => [id, name, tel, type,];
|
|
}
|