// Copyright (c) Microsoft. All rights reserved. using System.ComponentModel.DataAnnotations; namespace ContentSafety.Options; /// /// Configuration for Azure AI Content Safety service. /// public class AzureContentSafetyOptions { public const string SectionName = "AzureContentSafety"; [Required] public string Endpoint { get; set; } [Required] public string ApiKey { get; set; } }