// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct RecommendUserReq: Codable, Equatable {
    public var phones: [String]?

    public init(phones: [String]? = nil) {
        self.phones = phones
    }
}
