disable broken tests on net_4_0
[mcs.git] / class / System.Web.DynamicData / Test / Common / FooNoPrimaryColumns.cs
blob8ce7518001ed40493e188678327317ee9f236f88
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
6 namespace MonoTests.Common
8 class FooNoPrimaryColumns
10 public string Column1 { get; set; }
11 public int Column2 { get; set; }
13 public FooNoPrimaryColumns ()
15 Column1 = "hello";
16 Column2 = 123;