cargo66/lib/domain/entities/user/user.dart

21 lines
340 B
Dart
Raw Normal View History

2024-07-23 06:37:42 +00:00
import 'package:equatable/equatable.dart';
class User extends Equatable {
2024-08-07 13:56:12 +00:00
final String oid;
final String fullName;
final String phone;
2024-07-23 06:37:42 +00:00
const User({
2024-08-07 13:56:12 +00:00
required this.oid,
required this.fullName,
required this.phone,
2024-07-23 06:37:42 +00:00
});
@override
List<Object> get props => [
2024-08-07 13:56:12 +00:00
oid,
fullName,
phone,
2024-07-23 06:37:42 +00:00
];
}