CoreConstant.cs 524 B

12345678910111213141516171819202122232425
  1. // <author></author>
  2. // <date></date>
  3. // <description></description>
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace ERP.Core.Constant
  10. {
  11. public class CoreConstant
  12. {
  13. /// <summary>
  14. /// 菜单组件Layout
  15. /// </summary>
  16. public const string LAYOUT = "Layout";
  17. /// <summary>
  18. /// 菜单组件ParentView
  19. /// </summary>
  20. public const string PARENT_VIEW = "ParentView";
  21. }
  22. }