salix/modules/client/back/models/contact-channel.json

20 lines
381 B
JSON
Raw Normal View History

{
2022-05-12 06:06:30 +00:00
"name": "ContactChannel",
"base": "VnModel",
"options": {
"mysql": {
"table": "contactChannel"
}
},
2022-05-12 06:06:30 +00:00
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
2022-05-12 06:06:30 +00:00
"id": true,
"description": "Identifier"
},
"name": {
"type": "string",
"required": true
}
}
}