mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 23:58:02 +08:00
14 lines
233 B
C#
14 lines
233 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Yitter.IdGenerator
|
|
{
|
|
internal interface ISnowWorker
|
|
{
|
|
Action<OverCostActionArg> GenAction { get; set; }
|
|
|
|
long NextId();
|
|
}
|
|
}
|