AppSettings.cs 348 B

12345678910
  1. namespace FMSAdmin.Helpers {
  2. public class AppSettings {
  3. public string Secret { get; set; }
  4. public string StorageUrl { get; set; }
  5. public string StoragePath { get; set; }
  6. public string Scheduler { get; set; }
  7. public string WeatherApiKey { get; set; }
  8. public string DustApiKey { get; set; }
  9. }
  10. }