FooNoDefaultsWithPrimaryKey.cs 332 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MonoTests.Common
  6. {
  7. class FooNoDefaultsWithPrimaryKey
  8. {
  9. public string Column1 { get; set; }
  10. public int Column2 { get; set; }
  11. public string PrimaryKeyColumn1 { get; set; }
  12. public FooNoDefaultsWithPrimaryKey ()
  13. {
  14. }
  15. }
  16. }