8 lines
132 B
C#
8 lines
132 B
C#
namespace Flexitime.Interfaces
|
|
{
|
|
public interface ITokenFactory
|
|
{
|
|
string Generate(int size = 32);
|
|
}
|
|
}
|