Baz.cs 520 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MonoTests.Common
  6. {
  7. class Baz
  8. {
  9. // DO NOT change the order of properties - tests depend on it
  10. public int Column1 { get; set; }
  11. public int PrimaryKeyColumn1 { get; set; }
  12. public string PrimaryKeyColumn2 { get; set; }
  13. public bool PrimaryKeyColumn3 { get; set; }
  14. public Baz ()
  15. {
  16. Column1 = 123;
  17. PrimaryKeyColumn1 = 456;
  18. PrimaryKeyColumn2 = "primary key value";
  19. PrimaryKeyColumn3 = true;
  20. }
  21. }
  22. }