How to use custom attributes over a web service?
- by gfeli
Hi.
I am currently trying to add a custom "column name" to a property in a web service. Here is my class.
public class OrderCost
{
public int OrderNum { get; set; }
public int OrderLine { get; set; }
public int OrderRel { get; set; }
public DateTime OrderDate { get; set; }
public string PartNum { get; set; }
…