17 lines
279 B
Swift
17 lines
279 B
Swift
|
//
|
||
|
// Account-Extensions.swift
|
||
|
// NetNewsWire-iOS
|
||
|
//
|
||
|
// Created by Maurice Parker on 9/7/19.
|
||
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import Account
|
||
|
|
||
|
extension Account: Identifiable {
|
||
|
public var id: String {
|
||
|
return accountID
|
||
|
}
|
||
|
}
|