20 lines
396 B
Swift
20 lines
396 B
Swift
import Foundation
|
|
|
|
final class LocalizedWebsiteData: ObservableObject {
|
|
|
|
@Published
|
|
var title: String
|
|
|
|
@Published
|
|
var description: String
|
|
|
|
@Published
|
|
var iconDescription: String
|
|
|
|
init(title: String, description: String, iconDescription: String) {
|
|
self.title = title
|
|
self.description = description
|
|
self.iconDescription = iconDescription
|
|
}
|
|
}
|