mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 11:47:40 +00:00
16 lines
286 B
Objective-C
16 lines
286 B
Objective-C
//
|
|
// PicoBindable.h
|
|
// Pico
|
|
//
|
|
// Created by bulldog on 13-2-24.
|
|
// Copyright (c) 2013 LeanSoft Technology. All rights reserved.
|
|
//
|
|
|
|
@class PicoClassSchema;
|
|
@protocol PicoBindable <NSObject>
|
|
|
|
+(PicoClassSchema *)getClassMetaData;
|
|
+(NSMutableDictionary *)getPropertyMetaData;
|
|
|
|
@end
|