namespace Volo.Abp.DistributedLocking; public class AbpDistributedLockOptions { /// /// DistributedLock key prefix. /// public string KeyPrefix { get; set; } public AbpDistributedLockOptions() { KeyPrefix = ""; } }