mirror of
https://github.com/ente-io/ente.git
synced 2025-06-04 16:15:52 +00:00
8 lines
161 B
Dart
8 lines
161 B
Dart
class EntityResult {
|
|
final int generatedID;
|
|
final String rawData;
|
|
final bool hasSynced;
|
|
|
|
EntityResult(this.generatedID, this.rawData, this.hasSynced);
|
|
}
|