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