move Auth Models into Response folder; remove unused usings;

This commit is contained in:
2013-07-04 23:47:39 +02:00
parent 7f38e346a2
commit 01ab0f8bb8
8 changed files with 22 additions and 18 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ namespace PocketSharp.Models
/// The _ item dictionary.
/// </value>
[DataMember(Name = "list")]
public Dictionary<string, PocketItem> _ItemDictionary { get; set; }
public Dictionary<string, PocketItem> ItemDictionary { get; set; }
/// <summary>
/// Gets the items.
@@ -45,7 +45,7 @@ namespace PocketSharp.Models
[IgnoreDataMember]
public List<PocketItem> Items
{
get { return Utilities.DictionaryToList<PocketItem>(_ItemDictionary); }
get { return Utilities.DictionaryToList<PocketItem>(ItemDictionary); }
}
}
}