using System; namespace Yitter.IdGenerator { public interface IIdGenerator { Action GenIdActionAsync { get; set; } long NewLong(); } }