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.

24 lines
438 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CDPShared
  7. {
  8. public class TwoStrings
  9. {
  10. public string Str1 { get; set; }
  11. public string Str2 { get; set; }
  12. public TwoStrings()
  13. {
  14. }
  15. public TwoStrings(string str1, string str2)
  16. {
  17. Str1 = str1;
  18. Str2 = str2;
  19. }
  20. }
  21. }