fixing accessors

This commit is contained in:
Tommy Parnell
2014-02-23 13:04:40 -05:00
parent 1d9ee47ee6
commit 408ba491bc
3 changed files with 50 additions and 63 deletions

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GravatarSyncro.Android.Client.Setting
namespace SharedSettingsAbstraction.Setting
{
class CastingSettingException : Exception
{

View File

@@ -20,7 +20,7 @@ namespace SharedSettingsAbstraction.Setting
public class SettingsKey<T>
{
public string key { get; private set; }
public T value { private get; private set; }
private T value;
public string Description { get; set; }
public string Title { get; set; }
private string _preferenceName;