Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / System.Web.DynamicData / Test / Common / FooDisplayName.cs
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Linq;
5 using System.Text;
6
7 namespace MonoTests.Common
8 {
9         [DisplayName ("My name is FooDisplayName, and I am friendly")]
10         class FooDisplayName
11         {
12                 public string Column1 { get; set; }
13                 public int Column2 { get; set; }
14                 public string PrimaryKeyColumn1 { get; set; }
15                 public int PrimaryKeyColumn2 { get; set; }
16                 public bool PrimaryKeyColumn3 { get; set; }
17
18                 public FooDisplayName ()
19                 {
20                         Column1 = "hello";
21                         Column2 = 123;
22                         PrimaryKeyColumn1 = "primary key value";
23                         PrimaryKeyColumn2 = 456;
24                         PrimaryKeyColumn3 = true;
25                 }
26         }
27 }