blob: a2be3230afeceb3e87259f6ca81a448806f8e0fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import Foundation
struct BooruProviderCustom: Identifiable, Codable, Hashable {
let id: UUID
var baseURL: String
var flavor: BooruProviderFlavor
init(baseURL: String, flavor: BooruProviderFlavor, id: UUID = UUID()) {
self.id = id
self.baseURL = baseURL
self.flavor = flavor
}
}
|