Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / app / feed-viewer / app / model / Article.js
diff --git a/examples/app/feed-viewer/app/model/Article.js b/examples/app/feed-viewer/app/model/Article.js
new file mode 100644 (file)
index 0000000..7225ab3
--- /dev/null
@@ -0,0 +1,10 @@
+Ext.define('FV.model.Article', {
+    extend: 'Ext.data.Model',
+    
+    fields: [
+        'title', 'author', {
+            name: 'pubDate',
+            type: 'date'
+        }, 'link', 'description', 'content'
+    ]
+});
\ No newline at end of file