Changed the Property properties to internal setters.

Made the `DataTypeGuid` property completely `internal`.
This commit is contained in:
leekelleher
2014-03-04 16:58:57 +00:00
parent 89af319265
commit 50ced7459a
@@ -13,16 +13,16 @@ namespace Archetype.Umbraco.Models
public string Alias { get; internal set; }
[JsonProperty("value")]
public object Value { get; set; }
public object Value { get; internal set; }
[JsonProperty("propertyEditorAlias")]
public string PropertyEditorAlias { get; internal set; }
[JsonProperty("dataTypeId")]
public int DataTypeId { get; set; }
public int DataTypeId { get; internal set; }
[JsonProperty("dataTypeGuid")]
public string DataTypeGuid { get; set; }
internal string DataTypeGuid { get; set; }
public T GetValue<T>()
{