mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 23:58:02 +08:00
12 lines
187 B
C#
12 lines
187 B
C#
using System;
|
|
|
|
namespace Yitter.IdGenerator
|
|
{
|
|
public interface IIdGenerator
|
|
{
|
|
Action<OverCostActionArg> GenIdActionAsync { get; set; }
|
|
|
|
long NewLong();
|
|
}
|
|
}
|