public class Link
    {
           public string rel { get; set; }
           public string href { get; set; }        
           public string name { get; set; }
    }
 
Using this class i have to create an json file ("JsonConvert.SerializeObject(Link)")  but for some cases i dont want to hide name property and show only rel and href properties and other case i want show all of the 3 properties.. 
 
can you please suggest me what to do for this..