Convert Articles, ArticlesDatabase, and SyncDatabase to Swift Packages

This commit is contained in:
Maurice Parker
2020-07-30 04:54:21 -05:00
parent e3e5d69b9b
commit fbfdbb04c7
44 changed files with 91 additions and 1928 deletions

View File

@@ -0,0 +1,25 @@
//
// Constants.swift
// SyncDatabase
//
// Created by Maurice Parker on 5/14/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import Foundation
struct DatabaseTableName {
static let syncStatus = "syncStatus"
}
struct DatabaseKey {
// Sync Status
static let articleID = "articleID"
static let key = "key"
static let flag = "flag"
static let selected = "selected"
}