conversations-classic-ios/ConversationsClassic/AppCore/Models/Channel.swift

16 lines
245 B
Swift
Raw Normal View History

2024-07-29 16:36:22 +00:00
import Foundation
import GRDB
import Martin
import SwiftUI
// MARK: - Account
struct Channel: DBStorable {
var id: String
var account: String
var channel: String
}
extension Channel {
static let channelTableName = "channels"
}