Const.cs 317 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 Bmp.WinForms
  7. {
  8. internal static class Const
  9. {
  10. internal const string AppTitle = "马鹿音乐播放器"
  11. #if DEBUG
  12. +"(调试构建)"
  13. #endif
  14. ;
  15. }
  16. }