mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-11 08:56:54 +01:00
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
|
|
}
|
|
}
|