20cc3f4f3bd5a63483e7db98bb0837ce16c76b3c
[Sone.git] / SoneStore.kt
1 package net.pterodactylus.sone.database
2
3 import net.pterodactylus.sone.data.Sone
4
5 /**
6  * Interface for a store for [Sone]s.
7  */
8 interface SoneStore {
9
10         fun storeSone(sone: Sone)
11         fun removeSone(sone: Sone)
12
13 }