Impressia/Vernissage/Models/PhotoUrl.swift

21 lines
424 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
2023-10-19 13:24:02 +02:00
@Observable public class PhotoUrl: Identifiable {
public var id: String
2023-10-19 13:24:02 +02:00
public var statusId: String?
public var url: URL?
public var blurhash: String?
public var sensitive = false
init(id: String) {
self.id = id
}
}