Constants.cs 810B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WebApplication3.Clases
  6. {
  7. public static class Constants
  8. {
  9. public const string PathZip = @"C:\Users\Admin\Desktop\";
  10. public const string PathExtract = @"C:\Users\Admin\Desktop\TestExtract\";
  11. public const string PathModflow = @"C:\Users\Admin\Downloads\MF2005.1_12\MF2005.1_12\bin\mf2005.exe";
  12. public static readonly Dictionary<string, string> _recharge_geometry_colors = new()
  13. {
  14. { "1", "#003366" },
  15. { "2", "#996699" },
  16. { "3", "#CCFF33" },
  17. { "4", "#00FF99" },
  18. { "5", "#CC0000" },
  19. { "6", "#FF6600" },
  20. { "7", "#660099" },
  21. { "8", "#266A2E" }
  22. };
  23. }
  24. }