import Foundation /// One row of `milestone list`, with progress counts. nonisolated struct Milestone: Decodable, Sendable, Hashable, Identifiable { let title: String let description: String? let due: String? let state: String let open: Int let closed: Int var id: String { title } }