You can use the Ignore attribute:
public class someclass
{
public string property1 { get; set; }
public string property2 { get; set; }
[Ignore]
public string property3 { get; set; }
}
You can use the Ignore attribute:
public class someclass
{
public string property1 { get; set; }
public string property2 { get; set; }
[Ignore]
public string property3 { get; set; }
}