Files
DP44/Common/DTS.Common.Import/.svn/pristine/2e/2e30a9e81a8f5e847e3cc2b2efacae65ba240f44.svn-base

9 lines
190 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.Import.Interfaces
{
public interface IParseVariant
{
string FileName { get; set; }
void Parse(ref ImportObject importObject);
}
}