Files
Alexandru-Victor Macocian e40e42ba40 Setup reading and persistence
2025-11-28 17:07:37 +01:00

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; }
}