1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Vinno.IUS.Product.Notes
- {
- public class ClientAppSettings
- {
- /// <summary>
- /// Ftp url
- /// </summary>
- public static string FtpUrl { get; set; }
- /// <summary>
- /// The web api host
- /// </summary>
- public static string ApiHost { get; set; }
- }
- }
|