Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 4th, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. .NET ASMX AJAX returned object
  2. public class Foo {
  3.     public string Property1 { get;set; }
  4.     public string Property2 { get;set; }
  5. }
  6.  
  7. public class Bar {
  8.     public int Id { get;set; }
  9.     public int Name { get;set; }
  10. }
  11.        
  12. public class FooBar {
  13.     public Foo foo { get; set; }
  14.     public Bar bar { get; set; }
  15. }