Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created February 3, 2020 18:28
Show Gist options
  • Save kasunkv/c79ce7b57c9773d0bc1a4f15ba0a4fce to your computer and use it in GitHub Desktop.
Save kasunkv/c79ce7b57c9773d0bc1a4f15ba0a4fce to your computer and use it in GitHub Desktop.
AppSettings
namespace MusicStore.Shared
{
public class AppSettings
{
public Discount Discount { get; set; }
public Identity Identity { get; set; }
}
public class Discount
{
public double Amount { get; set; }
}
public class Identity
{
public string Secret { get; set; } // <<< Property for the Key Vault secret
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment