FooNoPrimaryColumns.cs 308 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MonoTests.Common
  6. {
  7. class FooNoPrimaryColumns
  8. {
  9. public string Column1 { get; set; }
  10. public int Column2 { get; set; }
  11. public FooNoPrimaryColumns ()
  12. {
  13. Column1 = "hello";
  14. Column2 = 123;
  15. }
  16. }
  17. }