mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
feat: add mobile device version tracking
This commit is contained in:
parent
76eaee3657
commit
6a359f0372
16 changed files with 236 additions and 13 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue