CompilerError.cs 392 B

123456789101112131415161718
  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 CompilerError
  8. {
  9. public int Line { get; set; }
  10. public int Column { get; set; }
  11. public string ErrorText { get; set; }
  12. public string ErrorNumber { get; set; }
  13. }
  14. }
  15. #endif