completed ui for current user apps
This commit is contained in:
parent
24f458b06f
commit
41b7d22fd9
14 changed files with 718 additions and 37 deletions
18
lib/models/scoop_app_model.dart
Normal file
18
lib/models/scoop_app_model.dart
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class ScoopAppModel extends Equatable {
|
||||
final String name;
|
||||
final String description;
|
||||
final String bucket;
|
||||
final DateTime updatedAt;
|
||||
|
||||
const ScoopAppModel({
|
||||
required this.name,
|
||||
required this.description,
|
||||
required this.bucket,
|
||||
required this.updatedAt,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [name, description, bucket, updatedAt];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue