jsdw_ios/QuickLocation/Section/Group/GroupSetting/GroupSettingViewModel.swift

20 lines
287 B
Swift

//
// 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
}
}