hedera-web/js/sql/filter-item.js

18 lines
204 B
JavaScript
Raw Normal View History

/**
* The equivalent of a SQL operation.
**/
Sql.FilterItem = new Class
({
Extends: Sql.Operation
,Tag: 'sql-filter-item'
,Properties:
{
2015-11-19 13:57:23 +00:00
primary:
{
type: Boolean
}
}
2015-11-19 13:57:23 +00:00
,primary: true
});