ClientAppSettings.cs 427 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Vinno.IUS.Product.Notes
  6. {
  7. public class ClientAppSettings
  8. {
  9. /// <summary>
  10. /// Ftp url
  11. /// </summary>
  12. public static string FtpUrl { get; set; }
  13. /// <summary>
  14. /// The web api host
  15. /// </summary>
  16. public static string ApiHost { get; set; }
  17. }
  18. }