MobileMkch-iOS/MobileMkch/AppGroup.swift
2025-08-08 13:30:26 +03:00

17 lines
338 B
Swift

import Foundation
enum AppGroup {
static let identifier = "group.mobilemkch"
static var defaults: UserDefaults? { UserDefaults(suiteName: identifier) }
}
struct FavoriteThreadWidget: Identifiable, Codable {
let id: Int
let title: String
let board: String
let boardDescription: String
let addedDate: Date
}