Constants.cs 403 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MediaBrowser.Common.Constants
  7. {
  8. public static class Constants
  9. {
  10. public const string MBAdminUrl = "http://www.mb3admin.com/admin/";
  11. public const string MBServerPkgName = "MBServer";
  12. public const string MBTheaterPkgName = "MBTheater";
  13. }
  14. }