DictConst.cs 465 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GeekDesk.Constant
  7. {
  8. public class DictConst
  9. {
  10. public static readonly Dictionary<bool, string> batchMenuHeaderDict = new Dictionary<bool, string>();
  11. static DictConst() {
  12. batchMenuHeaderDict.Add(true, "取消批量操作");
  13. batchMenuHeaderDict.Add(false, "批量操作");
  14. }
  15. }
  16. }