Replace Fetched with Kotlin version
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / core / Fetched.kt
1 package net.pterodactylus.sone.core
2
3 import freenet.client.FetchResult
4 import freenet.keys.FreenetURI
5
6 /**
7  * Container for a fetched URI and the [FetchResult].
8  */
9 data class Fetched(val freenetUri: FreenetURI, val fetchResult: FetchResult)