ComplexObject.cs 435 B

123456789101112131415
  1. // Copyright (c) .NET Foundation. All rights reserved.
  2. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
  3. using System;
  4. namespace FunctionalTests
  5. {
  6. public class ComplexObject
  7. {
  8. public string String { get; set; }
  9. public int[] IntArray { get; set; }
  10. public byte[] ByteArray { get; set; }
  11. public DateTime DateTime { get;set; }
  12. }
  13. }