chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace VectorStoreRAG.Options;
|
||||
|
||||
/// <summary>
|
||||
/// Redis service settings.
|
||||
/// </summary>
|
||||
internal sealed class RedisConfig
|
||||
{
|
||||
public const string ConfigSectionName = "Redis";
|
||||
|
||||
[Required]
|
||||
public string ConnectionConfiguration { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user