PersonIdentityListData.swift 355 B

1234567891011121314151617181920
  1. //
  2. // PersonIdentityListData.swift
  3. // O2Platform
  4. //
  5. // Created by FancyLou on 2021/7/28.
  6. // Copyright © 2021 zoneland. All rights reserved.
  7. //
  8. import HandyJSON
  9. class PersonIdentityListData: NSObject, DataModel {
  10. @objc var identityList: [String]? = []
  11. required override init() { }
  12. func mapping(mapper: HelpingMapper) {
  13. }
  14. }