mirror of
https://github.com/ente-io/ente.git
synced 2025-05-29 14:01:19 +00:00
21 lines
480 B
Dart
21 lines
480 B
Dart
import 'package:photos/models/collection/collection.dart';
|
|
import 'package:photos/models/file/file.dart';
|
|
|
|
class CollectionWithThumbnail {
|
|
final Collection collection;
|
|
final EnteFile? thumbnail;
|
|
|
|
CollectionWithThumbnail(
|
|
this.collection,
|
|
this.thumbnail,
|
|
);
|
|
}
|
|
|
|
class SharedCollections {
|
|
final List<Collection> outgoing;
|
|
final List<Collection> incoming;
|
|
final List<Collection> quickLinks;
|
|
|
|
SharedCollections(this.outgoing, this.incoming, this.quickLinks);
|
|
}
|