ofbapi/OFBButte.Application/Codes/ICodeGenerator.cs

12 lines
204 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OFBButte.Application.Codes
{
public interface ICodeGenerator
{
string Generate(int byteSize = 16);
}
}