Interaction = require './interaction'

class Action extends Interaction
  @entity("Action")

  @accessors "name",
             "params",
             "returns", ["get", "set"]

  @children "params", "returns"

  constructor: (options) ->
    super(options)

module.exports = Action

