NetNewsWire/Frameworks/Database/Constants.swift

29 lines
533 B
Swift
Raw Normal View History

2017-07-04 00:04:31 +02:00
//
// Keys.swift
// Database
//
// Created by Brent Simmons on 7/3/17.
// Copyright © 2017 Ranchero Software. All rights reserved.
//
import Foundation
public struct DatabaseTableName {
static let articles = "articles"
static let statuses = "statuses"
}
public struct DatabaseKey {
static let articleID = "articleID"
static let accountInfo = "accountInfo"
// ArticleStatus
static let read = "read"
static let starred = "starred"
static let userDeleted = "userDeleted"
static let dateArrived = "dateArrived"
}