TestClassWithCustomType.cs 498 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace S7.UnitTest.Helpers
  6. {
  7. public class CustomType
  8. {
  9. public bool[] Bools { get; set; } = new bool[2];
  10. public bool[] Fillers { get; set; } = new bool[14];
  11. }
  12. public class TestClassWithCustomType
  13. {
  14. public int Int { get; set; }
  15. public CustomType CustomType { get; set; }
  16. public CustomType[] CustomTypes { get; set; } = new CustomType[2];
  17. }
  18. }