10 lines
201 B
C#
10 lines
201 B
C#
using Microsoft.Extensions.FileProviders;
|
|
|
|
namespace Toolkit.Foundation;
|
|
|
|
public interface IConfigurationFile<TConfiguration>
|
|
where TConfiguration :
|
|
class
|
|
{
|
|
IFileInfo FileInfo { get; }
|
|
} |