Files
MagnumOpus/Packages/MagnumOpusCore/Sources/Models/SyncState.swift
Felix Förtsch f37b287f5e add models module: shared types for accounts, messages, threads, sync
fix Package.swift: remove NIOIMAPCore product reference (only NIOIMAP is exported by swift-nio-imap)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 18:11:24 +01:00

6 lines
110 B
Swift

public enum SyncState: Sendable, Equatable {
case idle
case syncing(mailbox: String?)
case error(String)
}