swift-chat-core/Sources/MessagingChatCore/Models/AccountProvider.swift
Lilith a9577f401e chore(models): 🔧 Update User.swift and AccountProvider.swift to reflect latest schema changes
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-16 09:37:18 -08:00

7 lines
155 B
Swift

import Foundation
/// Represents the type of account provider
public enum AccountProvider: String, Codable, Sendable {
case creator
case client
}