Files
CoreStore-JohnEstropia/LegacyDemo/LegacyDemo/MIgrations Demo/OrganismProtocol.swift
2020-09-19 14:32:43 +09:00

17 lines
287 B
Swift

//
// OrganismProtocol.swift
// LegacyDemo
//
// Created by John Rommel Estropia on 2015/06/27.
// Copyright © 2018 John Rommel Estropia. All rights reserved.
//
import Foundation
protocol OrganismProtocol: AnyObject {
var dna: Int64 { get set }
func mutate()
}