IStringTransform.cs 98 B

123456
  1. namespace Day1;
  2. public interface IStringTransform
  3. {
  4. string Transform(string input);
  5. }