10 lines
149 B
C#
10 lines
149 B
C#
using System;
|
|
|
|
namespace Flexitime.Interfaces
|
|
{
|
|
public interface ITokenFactory
|
|
{
|
|
string Generate(int size = 32);
|
|
}
|
|
}
|