6 lines
195 B
C#
6 lines
195 B
C#
public class ElasticsearchOptions
|
|
{
|
|
public const string Section = "Elasticsearch";
|
|
public string Uri { get; set; } = null!;
|
|
public ElasticIndexOptions Indices { get; set; } = null!;
|
|
} |