using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KLHZ.Trader.Core.Contracts.Messaging.Dtos.Interfaces { public interface ILockableObject { public Task Lock(TimeSpan duration); public void Unlock(); } }