2009-09-10 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web.DynamicData / Test / Common / FooNoPrimaryColumns.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 FooNoPrimaryColumns
9         {
10                 public string Column1 { get; set; }
11                 public int Column2 { get; set; }
12
13                 public FooNoPrimaryColumns ()
14                 {
15                         Column1 = "hello";
16                         Column2 = 123;
17                 }
18         }
19 }