Files
MagnumOpus/Packages/MagnumOpusCore/Sources/Models/Credentials.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

10 lines
207 B
Swift

public struct Credentials: Sendable {
public var username: String
public var password: String
public init(username: String, password: String) {
self.username = username
self.password = password
}
}