AppSettings.cs 269 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace LJProxy.Settings
  6. {
  7. public class AppSettings
  8. {
  9. public string L1SvrCRPUrl { get; set; }
  10. public string L1SvrPROUrl { get; set; }
  11. }
  12. }