WhitespaceHandlingStrategy.cs 233 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace XUnity.AutoTranslator.Plugin.Core
  6. {
  7. public enum WhitespaceHandlingStrategy
  8. {
  9. AllOccurrences,
  10. TrimPerNewline
  11. }
  12. }