2019-09-08 03:50:57 +02: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 13:43:29 +02:00
|
|
|
extension AccountType: Identifiable {
|
|
|
|
public var id: Int {
|
|
|
|
return rawValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 03:50:57 +02:00
|
|
|
extension Account: Identifiable {
|
|
|
|
public var id: String {
|
|
|
|
return accountID
|
|
|
|
}
|
|
|
|
}
|