I want to create list of whitelist objects from the below XML.
Created a class WhiteList
class WhiteList
{
public string ID { get; set; }
public string From { get; set; }
public string To { get; set; }
}
I need to create list of objects out of the XML
<Response>
<list>
<whitelist>
<id>1234</id>
<from>[email protected]</from>
<to>[email protected]</to>
</whitelist>
<whitelist>
<id>1452</id>
<from>[email protected]</from>
<to>[email protected]</to>
</whitelist>
<whitelist>
<id>9483</id>
<from>[email protected]</from>
<to>[email protected]</to>
</whitelist>
<whitelist>
<id>5654</id>
<from>ewrgre@loansdfglosers</from>
<to>[email protected]</to>
</whitelist>
</list>
</Response>