Template
11 lines
299 B
C#
11 lines
299 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Strata.DecisionSupport.Biz.Test.Integration.Configuration
|
|
{
|
|
public class AWSOptions
|
|
{
|
|
[Required(ErrorMessage = "Missing the Snowflake Admin Secret name")]
|
|
public string SnowflakeAdminSecretName { get; set; }
|
|
}
|
|
}
|