| 12345678910111213141516171819202122 |
- //
- // DKModel.h
- // DKModel
- //
- // Created by dongke on 17/5/9.
- // Copyright (c) 2017 dongke.
- //
- // This source code is licensed under the MIT-style license found in the
- // LICENSE file in the root directory of this source tree.
- //
- #import <Foundation/Foundation.h>
- #if __has_include(<DKJsonModel/DKModel.h>)
- FOUNDATION_EXPORT double DKModelVersionNumber;
- FOUNDATION_EXPORT const unsigned char DKModelVersionString[];
- #import <DKJsonModel/NSObject+DKModel.h>
- #import <DKJsonModel/DKClassInfo.h>
- #else
- #import "NSObject+DKModel.h"
- #import "DKClassInfo.h"
- #endif
|