// // GroupSettingViewModel.swift // QuickLocation // // Created by 八条 on 2026/6/9. // import Foundation struct GroupSettingViewModel { let groupId: String var groupModel: GroupInfoModel? init(groupId: String) { self.groupId = groupId } }