mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-13 09:59:17 +01:00
23 lines
538 B
Swift
23 lines
538 B
Swift
//
|
||
// AccountInfo.swift
|
||
// Database
|
||
//
|
||
// Created by Brent Simmons on 7/3/17.
|
||
// Copyright © 2017 Ranchero Software. All rights reserved.
|
||
//
|
||
|
||
import Foundation
|
||
import RSCore
|
||
import RSDatabase
|
||
|
||
// AccountInfo is a plist-compatible dictionary that’s stored as a binary plist in the database.
|
||
|
||
//func accountInfoWithRow(_ row: FMResultSet) -> AccountInfo? {
|
||
//
|
||
// guard let rawAccountInfo = row.data(forColumn: DatabaseKey.accountInfo) else {
|
||
// return nil
|
||
// }
|
||
// return propertyList(withData: rawAccountInfo) as? AccountInfo
|
||
//}
|
||
|