mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-12 16:50:39 +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();
|
|
}
|
|
}
|