feat: add adjustmentTimestamp to platformasset

# Conflicts:
#	mobile/lib/platform/native_sync_api.g.dart
This commit is contained in:
shenlong-tanwen
2025-09-20 00:33:23 +05:30
parent 78553a0258
commit d1845e498e
5 changed files with 19 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ class PlatformAsset {
final int durationInSeconds;
final int orientation;
final bool isFavorite;
final int? adjustmentTimestamp;
const PlatformAsset({
required this.id,
@@ -38,6 +39,7 @@ class PlatformAsset {
this.durationInSeconds = 0,
this.orientation = 0,
this.isFavorite = false,
this.adjustmentTimestamp,
});
}