Impressia/Vernissage/Models/PhotoUrl.swift

21 lines
474 B
Swift
Raw Normal View History

//
// https://mczachurski.dev
// Copyright © 2023 Marcin Czachurski and the repository contributors.
2023-03-28 10:35:38 +02:00
// Licensed under the Apache License 2.0.
//
import Foundation
public class PhotoUrl: ObservableObject, Identifiable {
public var id: String
@Published public var statusId: String?
@Published public var url: URL?
@Published public var blurhash: String?
2023-03-05 13:58:22 +01:00
@Published public var sensitive = false
init(id: String) {
self.id = id
}
}