ente/lib/models/face.dart

9 lines
189 B
Dart
Raw Normal View History

2020-04-05 12:22:38 +00:00
class Face {
final int faceID;
2020-04-09 19:03:11 +00:00
final String thumbnailPath;
2020-04-05 12:22:38 +00:00
Face.fromJson(Map<String, dynamic> json)
: faceID = json["faceID"],
2020-04-09 19:03:11 +00:00
thumbnailPath = json["thumbnailPath"];
2020-04-05 12:22:38 +00:00
}