diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 89e2ee5..aa006ec 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -5,6 +5,9 @@
+
+
+
+ NSLocationWhenInUseUsageDescription
+ This app needs access to location when open.
+ NSLocationAlwaysUsageDescription
+ This app needs access to location when in the background.
+ NSLocationTemporaryUsageDescriptionDictionary
CFBundleDevelopmentRegion
$(DEVELOPMENT_LANGUAGE)
CFBundleDisplayName
diff --git a/lib/apis/models/entities/login_info.dart b/lib/apis/models/entities/login_info.dart
new file mode 100644
index 0000000..973e413
--- /dev/null
+++ b/lib/apis/models/entities/login_info.dart
@@ -0,0 +1,30 @@
+import 'package:json_annotation/json_annotation.dart';
+
+part 'login_info.g.dart';
+
+@JsonSerializable()
+class LoginInfo {
+ LoginInfo({
+ required this.id,
+ this.user,
+ this.devices,
+ required this.createdAt,
+ });
+
+ factory LoginInfo.fromJson(Map json) =>
+ _$LoginInfoFromJson(json);
+
+ Map toJson() => _$LoginInfoToJson(this);
+
+ @JsonKey(name: '_id')
+ String id;
+
+ @JsonKey(name: 'user')
+ String? user;
+
+ @JsonKey(name: 'devices')
+ List