Skip to content

Instantly share code, notes, and snippets.

@diffused
diffused / Startup.cs
Created May 20, 2019 23:53
aspnet core typed config
public class MySettings
{
public string Value1 { get; set; }
public string Value2 { get; set; }
}
public class Startup
{
public void ConfigureService(IServiceCollection services)
{