17 lines
226 B
Swift
17 lines
226 B
Swift
|
|
//
|
||
|
|
// ViewModel.swift
|
||
|
|
// dns
|
||
|
|
//
|
||
|
|
// Created by Benjamin Erhart on 14.04.26.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
import Combine
|
||
|
|
|
||
|
|
class ViewModel: NSObject, ObservableObject {
|
||
|
|
|
||
|
|
@Published
|
||
|
|
var blocklist: BlocklistOption = .secure
|
||
|
|
|
||
|
|
}
|