watchOS able to set status

This commit is contained in:
2025-10-30 01:03:19 +08:00
parent a8055de910
commit dbcd1b6d36
5 changed files with 311 additions and 13 deletions

View File

@@ -230,3 +230,19 @@ struct SnUserProfile: Codable {
let experience: Int
let levelingProgress: Double
}
struct SnAccountStatus: Codable {
let id: String
let attitude: Int
let isOnline: Bool
let isInvisible: Bool
let isNotDisturb: Bool
let isCustomized: Bool
let label: String
let meta: [String: AnyCodable]?
let clearedAt: Date?
let accountId: String
let createdAt: Date
let updatedAt: Date
let deletedAt: Date?
}