little things
[zzz-floof.git] / floof / model / art.py
index b709610..544a830 100644 (file)
@@ -119,4 +119,16 @@ class Rating(Entity):
     # options = ["sucks","neutral","good","great"]
     
 
-Rating.reverse_options = dict (zip(Rating.options.values(), Rating.options.keys()))
\ No newline at end of file
+Rating.reverse_options = dict (zip(Rating.options.values(), Rating.options.keys()))
+
+
+
+
+class UserRelation(Entity):
+    related = ManyToOne("User")
+    art = ManyToOne("Art")
+    type = Field(String) # by for of
+    
+    
+# class CharacterRelation(Entity):
+#     pass
\ No newline at end of file