Skip to content

Instantly share code, notes, and snippets.

@kadukf
Created December 9, 2013 09:05
Show Gist options
  • Save kadukf/7869410 to your computer and use it in GitHub Desktop.
Save kadukf/7869410 to your computer and use it in GitHub Desktop.
using System.Runtime.Serialization;
namespace WcfWorkerRole.Contract
{
[DataContract]
public class ProductData
{
[DataMember]
public string SKU { get; set; }
[DataMember]
public string Name { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment