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.
17 lines
472 B
17 lines
472 B
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(); |
|
} |
|
} |
|
}
|
|
|