blob: a5cf89585a9aa52da268d2ec0f74f80f8863b41f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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; }
}
}
|