mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
24 lines
437 B
Dart
24 lines
437 B
Dart
import 'package:equatable/equatable.dart';
|
|
import 'package:to_string/to_string.dart';
|
|
|
|
part 'face_recognition_face.g.dart';
|
|
|
|
@toString
|
|
class FaceRecognitionFace with EquatableMixin {
|
|
const FaceRecognitionFace({
|
|
required this.id,
|
|
required this.fileId,
|
|
});
|
|
|
|
@override
|
|
String toString() => _$toString();
|
|
|
|
@override
|
|
List<Object?> get props => [
|
|
id,
|
|
fileId,
|
|
];
|
|
|
|
final int id;
|
|
final int fileId;
|
|
}
|