2025-03-10 10:18:11 +08:00

13 lines
230 B
C#

using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace FlexFramework.Excel
{
public interface IConverter
{
object Convert(string input);
Type Type { get; }
}
}