7 lines
155 B
Swift
7 lines
155 B
Swift
import Foundation
|
|
|
|
/// Represents the type of account provider
|
|
public enum AccountProvider: String, Codable, Sendable {
|
|
case creator
|
|
case client
|
|
}
|