added deb search possibility (edit */application.py for switch between deb and file...
[findit] / src / mvc / models / debsearch.py
diff --git a/src/mvc/models/debsearch.py b/src/mvc/models/debsearch.py
new file mode 100755 (executable)
index 0000000..a0a632f
--- /dev/null
@@ -0,0 +1,18 @@
+#!/usr/bin/env python
+# -*-coding: utf-8 -*-
+# vim: sw=4 ts=4 expandtab ai
+# pylint: disable-msg=C0301
+
+from gtkmvc import Model
+
+
+class DebsearchModel(Model):
+
+    # observable properties
+    __properties__ = {
+        'quantity' : 10,
+        'stopit'   : False
+        }
+
+    def __init__(self):
+        Model.__init__(self)