hi, i have a web application with different business objects. i want to start developing a sliverlight application that is using some of these objects but i can't reference my business objects library cause it's not a sliverlight class library. now i guess i need to call web services to from my silverlight application but what type objects should they return? what would be the best way to use my business objects in the silverlight app without writing a new class lib which will be the about the same as the .net lib? let's say i have a .net class:
public class User
{
public int Id{get; set}
public string Username {get; set}
public string Email {get; set}
}
the silverlight class should be the same how do i use this object without rewriting it as a sliverlight class?