diff options
author | Vitaly Takmazov | 2012-03-10 20:44:57 +0400 |
---|---|---|
committer | Vitaly Takmazov | 2012-03-10 20:44:57 +0400 |
commit | 883eb3cf673a007edbe4feb997c9cdadfe81c279 (patch) | |
tree | 2b7e22114b6afe9968d5f8a22f5c075046ee38f1 /Juick/Api | |
parent | debc2482e4899804a87cffd8ec79b98c230106bd (diff) |
Forgotten files
Diffstat (limited to 'Juick/Api')
-rw-r--r-- | Juick/Api/Photo.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Juick/Api/Photo.cs b/Juick/Api/Photo.cs new file mode 100644 index 0000000..a5cf895 --- /dev/null +++ b/Juick/Api/Photo.cs @@ -0,0 +1,20 @@ +using System;
+using System.Net;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Shapes;
+
+namespace Juick.Api
+{
+ public class Photo
+ {
+ public string Thumbnail { get; set; }
+ public string Small { get; set; }
+ public string Medium { get; set; }
+ }
+}
|