TF-60 Add domain get device contact suggestion
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:model/contact/contact.dart';
|
||||
|
||||
class DeviceContact extends Contact implements EquatableMixin {
|
||||
DeviceContact(String displayName, String email) : super(displayName, email);
|
||||
|
||||
@override
|
||||
List<Object> get props => super.props;
|
||||
}
|
||||
Reference in New Issue
Block a user