Created
February 3, 2020 18:28
-
-
Save kasunkv/c79ce7b57c9773d0bc1a4f15ba0a4fce to your computer and use it in GitHub Desktop.
AppSettings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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