1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // MineContactCustomerServiceModel.swift
| // OKProject
| //
| // Created by alvin_y on 2020/6/17.
| // Copyright © 2020 yangwang. All rights reserved.
| //
|
| import UIKit
| import HandyJSON
| struct MineContactCustomerServiceModel: HandyJSON {
|
| /// 平台电话
| var platform = ""
|
| /// 本地电话
| var company = ""
| }
|
|