8 lines
151 B
Python
8 lines
151 B
Python
|
from netforce.model import Model, fields, get_model
|
||
|
class ImportData(Model):
|
||
|
_name='clinic.import.data'
|
||
|
_fields={
|
||
|
}
|
||
|
|
||
|
ImportData.register()
|