You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
509 B
29 lines
509 B
//
|
|
// InternationalNumber.swift
|
|
// IndieMusic
|
|
//
|
|
// Created by WenLei on 2024/1/15.
|
|
//
|
|
|
|
import Foundation
|
|
import RxDataSources
|
|
|
|
struct InternationalNumber {
|
|
let country: String
|
|
let number: String
|
|
}
|
|
|
|
struct InternationalNumberSection {
|
|
var items: [InternationalNumber]
|
|
}
|
|
|
|
extension InternationalNumberSection: SectionModelType {
|
|
typealias Item = InternationalNumber
|
|
|
|
init(original: InternationalNumberSection, items: [Item]) {
|
|
self = original
|
|
self.items = items
|
|
}
|
|
}
|
|
|