Skip to content

Instantly share code, notes, and snippets.

@yurenju
Created September 7, 2008 16:42
Show Gist options
  • Save yurenju/9284 to your computer and use it in GitHub Desktop.
Save yurenju/9284 to your computer and use it in GitHub Desktop.
class LinuxApplication(db.Model):
Package = db.StringProperty(required=True)
DownloadCount = db.IntegerProperty()
Section = db.StringProperty()
Name = db.ReferenceProperty(TranslationString, collection_name='name_collection')
Comment = db.ReferenceProperty(TranslationString, collection_name='comment_collection')
GenericName = db.ReferenceProperty(TranslationString, collection_name='generic_name_collection')
Exec = db.StringProperty()
Icon = db.StringProperty()
Categories = db.ListProperty(int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment