complete detailType for simplified Retrieve methods;

This commit is contained in:
2013-06-25 12:15:23 +02:00
parent 2c8524f5bd
commit 62481fb6f0
5 changed files with 29 additions and 8 deletions
+6 -6
View File
@@ -34,14 +34,14 @@ namespace PocketSharp.Console
//System.Console.WriteLine(client.GetAccessCode());
client.Search("css").ForEach(delegate(PocketItem item)
{
System.Console.WriteLine(item.ID + " ::: " + item.FullTitle);
});
{
System.Console.WriteLine(item.ID + " ::: " + item.FullTitle);
});
System.Console.WriteLine("---------------------------------");
//System.Console.WriteLine("---------------------------------");
client.Archive(330361896);
client.Favorite(330361896);
//client.Archive(330361896);
//client.Favorite(330361896);
System.Console.ReadKey();