You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
472 B
18 lines
472 B
3 years ago
|
using Nest;
|
||
|
|
||
|
namespace Sanhe.Abp.AuditLogging.Elasticsearch
|
||
|
{
|
||
|
public class AbpAuditLoggingElasticsearchOptions
|
||
|
{
|
||
|
public const string DefaultIndexPrefix = "auditlogging";
|
||
|
public string IndexPrefix { get; set; }
|
||
|
public IIndexSettings IndexSettings { get; set; }
|
||
|
|
||
|
public AbpAuditLoggingElasticsearchOptions()
|
||
|
{
|
||
|
IndexPrefix = DefaultIndexPrefix;
|
||
|
IndexSettings = new IndexSettings();
|
||
|
}
|
||
|
}
|
||
|
}
|