mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-15 15:19:58 +00:00
12 lines
267 B
C#
12 lines
267 B
C#
namespace Robin;
|
|
|
|
public sealed class ElasticOptions
|
|
{
|
|
public const string SectionName = "Elastic";
|
|
|
|
public Uri? Uri { get; set; }
|
|
public string? Index { get; set; }
|
|
public string? Username { get; set; }
|
|
public string? Password { get; set; }
|
|
}
|