2019-09-07 20:50:57 -05:00
|
|
|
//
|
|
|
|
// Account-Extensions.swift
|
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 9/7/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Account
|
|
|
|
|
2019-09-08 06:43:29 -05:00
|
|
|
extension AccountType: Identifiable {
|
|
|
|
public var id: Int {
|
|
|
|
return rawValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 20:50:57 -05:00
|
|
|
extension Account: Identifiable {
|
|
|
|
public var id: String {
|
|
|
|
return accountID
|
|
|
|
}
|
|
|
|
}
|