feat: Add prefecture modification support (#170)

This commit is contained in:
alexay7
2025-08-21 22:19:25 +02:00
committed by GitHub
parent 15412911a9
commit 3d95a84739
21 changed files with 294 additions and 24 deletions

View File

@@ -43,6 +43,10 @@ class AquaNetUser(
@Column(length = 3)
var country: String = "",
// Region code at most 2 characters
@Column(length = 2)
var region: String = "",
// Last login time
var lastLogin: Long = 0L,