You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. namespace uqac_ia_aspirobot.Common
  2. {
  3. public class ArConfig
  4. {
  5. public string PipeName { get; set; }
  6. public string PipeServer { get; set; }
  7. public int ServerThreadCount { get; set; }
  8. public void CopyTo(ArConfig other)
  9. {
  10. other.PipeName = PipeName;
  11. other.PipeServer = PipeServer;
  12. other.ServerThreadCount = ServerThreadCount;
  13. }
  14. }
  15. }