add WPF example

This commit is contained in:
2013-09-14 15:47:51 +02:00
parent 6114c3af9a
commit 25a3f4ef2f
17 changed files with 556 additions and 9 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PocketSharp.Wpf
{
public class Site
{
public string Url { get; set; }
public string Content { get; set; }
}
}