mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
6 lines
77 B
Dart
6 lines
77 B
Dart
|
class NcAlbumItem {
|
||
|
const NcAlbumItem(this.fileId);
|
||
|
|
||
|
final int fileId;
|
||
|
}
|