mastodon-ios/Mastodon/Scene/Share/Webview/WebViewModel.swift

18 lines
224 B
Swift

//
// WebViewModel.swift
// Mastodon
//
// Created by xiaojian sun on 2021/3/30.
//
import Foundation
final class WebViewModel {
public init(url: URL) {
self.url = url
}
// input
let url: URL
}