SerializationFormat.cs 265 B

12345678910111213141516
  1. using InABox.Clients;
  2. using InABox.Core;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.IO;
  6. using System.Text;
  7. using System.Threading;
  8. namespace InABox.Remote.Shared
  9. {
  10. public enum SerializationFormat
  11. {
  12. Json,
  13. Binary
  14. }
  15. }