Skip to content

Instantly share code, notes, and snippets.

@beachside-project
Created March 29, 2021 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beachside-project/17c581654cfadb08a6d4b8c82bab5e50 to your computer and use it in GitHub Desktop.
Save beachside-project/17c581654cfadb08a6d4b8c82bab5e50 to your computer and use it in GitHub Desktop.
OptionsPatternSamples - AzureAdOptions
using System.ComponentModel.DataAnnotations;
namespace OptionsPatternSamples.Options
{
public class AzureAdOptions
{
[Required]
public string TenantId { get; set; }
[Required]
public string ClientId { get; set; }
[Required]
public string ClientSecret { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment