Skip to content

Instantly share code, notes, and snippets.

@gusztavvargadr
Last active June 26, 2017 12:21
Show Gist options
  • Save gusztavvargadr/982354d46461c4eeb738cd9ae5215e63 to your computer and use it in GitHub Desktop.
Save gusztavvargadr/982354d46461c4eeb738cd9ae5215e63 to your computer and use it in GitHub Desktop.
public class AppSettings {
public Uri Host { get; set; }
public ConnectionSettings Connection { get; set; }
public class ConnectionSettings
{
public TimeSpan TimesOutIn { get; set; }
public int RetryCount { get; set; }
}
}
var appSettings = configuration.Get<AppSettings>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment