verdnatura-chat/app/lib/database/model/SlashCommand.js

17 lines
365 B
JavaScript
Raw Normal View History

import { Model } from '@nozbe/watermelondb';
import { field } from '@nozbe/watermelondb/decorators';
export default class SlashCommand extends Model {
static table = 'slash_commands';
@field('params') params;
@field('description') description;
@field('client_only') clientOnly;
@field('provides_preview') providesPreview;
2020-02-19 19:43:47 +00:00
@field('app_id') appId;
}