Hi
public class TimeModel
{
public int PageNo { get; set; }
public int FormId { get; set; }
public int FormType { get; set; }
public IList<Timeentrydetail>TimeEntryDetails { get; set; }
}
public class Timeentrydetail
{
public string Loc { get; set; }
public string Set { get; set; }
public string LunchStart { get; set; }
public string LunchEnd { get; set; }
public string WrapTime { get; set; }
public string Zone { get; set; }
}
Deserialize Ilist how to do ?

