TempFileCollection.cs 430 B

12345678910111213141516171819202122
  1. #if NETSTANDARD2_0 || NETSTANDARD2_1 || NETCOREAPP
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace FastReport.Code.CodeDom.Compiler
  6. {
  7. public class TempFileCollection
  8. {
  9. public string tempFolder;
  10. public bool v;
  11. public TempFileCollection(string tempFolder, bool v)
  12. {
  13. this.tempFolder = tempFolder;
  14. this.v = v;
  15. }
  16. }
  17. }
  18. #endif