feat: add mobile device version tracking

This commit is contained in:
aviv 2025-08-27 18:55:00 +03:00
parent 76eaee3657
commit 6a359f0372
16 changed files with 236 additions and 13 deletions

View file

@ -30,8 +30,27 @@ class UserAdminResponseDto {
required this.status,
required this.storageLabel,
required this.updatedAt,
required this.mobileDevices,
});
List<MobileDeviceDto> mobileDevices;
}
class MobileDeviceDto {
MobileDeviceDto({
required this.deviceType,
required this.deviceOS,
required this.appVersion,
required this.lastSeen,
});
String deviceType;
String deviceOS;
String appVersion;
DateTime lastSeen;
}
UserAvatarColor avatarColor;
DateTime createdAt;