using System; namespace Flexitime.Interfaces { public interface ITokenFactory { string Generate(int size = 32); } }