mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
21 lines
421 B
Swift
21 lines
421 B
Swift
//
|
|
// File.swift
|
|
//
|
|
//
|
|
// Created by eevee on 28/05/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension BootstrapMessage {
|
|
|
|
var attributes: [String: AccountAttribute] {
|
|
get {
|
|
self.wrapper.oneMoreWrapper.message.response.attributes.accountAttributes
|
|
}
|
|
set(attributes) {
|
|
self.wrapper.oneMoreWrapper.message.response.attributes.accountAttributes = attributes
|
|
}
|
|
}
|
|
}
|