mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-02-03 12:27:32 +01:00
18 lines
245 B
Swift
18 lines
245 B
Swift
//
|
|
// TimelineItem.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Maurice Parker on 6/30/20.
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Articles
|
|
|
|
struct TimelineItem: Identifiable {
|
|
|
|
var id: String
|
|
|
|
|
|
}
|