2009-09-10 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web.DynamicData / Test / Common / AssociatedBar.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace MonoTests.Common
7 {
8         class AssociatedBar
9         {
10                 public string Column1 { get; set; }
11                 public int Column2 { get; set; }
12                 public string Column3 { get; set; }
13
14                 public AssociatedBar ()
15                 {
16                         Column1 = "Column 1";
17                         Column2 = 123;
18                         Column3 = "Column 3";
19                 }
20         }
21 }