mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
9 lines
209 B
C#
9 lines
209 B
C#
namespace BuildingBlocks.Logging;
|
|
|
|
public class ElasticOptions
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public string ElasticServiceUrl { get; set; }
|
|
public string ElasticSearchIndex { get; set; }
|
|
}
|