course-work/lib/models/courier.dart

14 lines
218 B
Dart

class Courier {
Courier({
required this.name,
required this.surname,
required this.id,
required this.phone,
});
final String name;
final String surname;
final String phone;
final int id;
}