11 lines
167 B
Swift
11 lines
167 B
Swift
import Foundation
|
|
|
|
public enum ServerSyncStatus: Int {
|
|
case isNSync
|
|
case isSyncing
|
|
case needsDeletion
|
|
case needsCreation
|
|
case needsUpdate
|
|
case needsMove
|
|
}
|