Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IgorMuzyka/495527f564de5c5f636a83a8fe86251a to your computer and use it in GitHub Desktop.
Save IgorMuzyka/495527f564de5c5f636a83a8fe86251a to your computer and use it in GitHub Desktop.
public typealias RestorablePersistable = Restorable & Persistable
public protocol Restorable: Readable {}
public protocol Persistable: ReadableWritable {
static var fileExtension: String { get }
var fileName: String { get }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment