gitextract_nyxu_r8w/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug--.md │ └── feature--.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── MJExtension/ │ ├── Info.plist │ ├── MJExtension.h │ ├── MJExtensionConst.h │ ├── MJExtensionConst.m │ ├── MJFoundation.h │ ├── MJFoundation.m │ ├── MJProperty.h │ ├── MJProperty.m │ ├── MJPropertyKey.h │ ├── MJPropertyKey.m │ ├── MJPropertyType.h │ ├── MJPropertyType.m │ ├── NSObject+MJClass.h │ ├── NSObject+MJClass.m │ ├── NSObject+MJCoding.h │ ├── NSObject+MJCoding.m │ ├── NSObject+MJKeyValue.h │ ├── NSObject+MJKeyValue.m │ ├── NSObject+MJProperty.h │ ├── NSObject+MJProperty.m │ ├── NSString+MJExtension.h │ ├── NSString+MJExtension.m │ └── PrivacyInfo.xcprivacy ├── MJExtension.podspec ├── MJExtension.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ ├── MJExtension.xcscheme │ └── MJExtensionDemo.xcscheme ├── MJExtensionDemo/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── Info.plist ├── MJExtensionTests/ │ ├── CoreDataModel/ │ │ ├── MJCoreDataTestModel.xcdatamodeld/ │ │ │ └── MJCoreDataTestModel.xcdatamodel/ │ │ │ └── contents │ │ ├── MJCoreDataTester+CoreDataClass.swift │ │ └── MJCoreDataTester+CoreDataProperties.swift │ ├── CoreDataTests.swift │ ├── Info.plist │ ├── MJExtensionTests-Bridging-Header.h │ ├── MJExtensionTests.m │ ├── Model/ │ │ ├── MJAd.h │ │ ├── MJAd.m │ │ ├── MJBag.h │ │ ├── MJBag.m │ │ ├── MJBaseObject.h │ │ ├── MJBaseObject.m │ │ ├── MJBook.h │ │ ├── MJBook.m │ │ ├── MJBox.h │ │ ├── MJBox.m │ │ ├── MJCat.h │ │ ├── MJCat.m │ │ ├── MJDog.h │ │ ├── MJDog.m │ │ ├── MJExtensionConfig.h │ │ ├── MJExtensionConfig.m │ │ ├── MJFrenchUser.h │ │ ├── MJFrenchUser.m │ │ ├── MJPerson.h │ │ ├── MJPerson.m │ │ ├── MJStatus.h │ │ ├── MJStatus.m │ │ ├── MJStatusResult.h │ │ ├── MJStatusResult.m │ │ ├── MJStudent.h │ │ ├── MJStudent.m │ │ ├── MJUser.h │ │ └── MJUser.m │ ├── MultiThreadTests.swift │ ├── PrefixHeader.pch │ ├── SwiftModel/ │ │ └── MJTester.swift │ └── SwiftModelTests.swift ├── Package.swift └── README.md