aboutsummaryrefslogtreecommitdiffstats
path: root/core/plugin/intent/model/intent.rb
blob: 139d69f0706a8265a5485a6119ad728a19ae12b6 (plain)
1
2
3
4
5
6
7
8
9
# -*- coding: utf-8 -*-

module Plugin::Intent
  class Intent < Retriever::Model
    field.string :slug, required: true # Intentのslug
    field.string :label, required: true
    field.string :model_slug, required: true
  end
end