In Field: [XmlIgnore] public List<Keyword> Keywords { get { return KeywordValues; } set { KeywordValues = value; } } Careful: there may be more examples of this in the ContentModel.cs!
In Field:
[XmlIgnore]
public List Keywords
{
get
{
return KeywordValues;
}
set
{
KeywordValues = value;
}
}
Careful: there may be more examples of this in the ContentModel.cs!