OpenAuth.Net/Infrastructure/Snowflake/IIdGenerator.cs

12 lines
187 B
C#
Raw Normal View History

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