using System;
using System.Collections.Generic;
using System.Text;
namespace Systin.Library{
public interface ILoader
{
/// <summary>
/// Used to access the underlying File
/// </summary>
System.IO.FileInfo FileHandle
{
get;
}
/// <summary>
/// Used to access the name of the underlying file
/// </summary>
string FileName
{
get;
}
}
}
|