CommonDefine.cs 349 B

123456789101112131415
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PaintDotNet.Preview2
  8. {
  9. public static class CommonDefine
  10. {
  11. public const string Preview2Root = @"\Preview2\";
  12. public const string Preview2ConfigFile = Preview2Root + "Preview2Config.xml";
  13. }
  14. }