9 lines
204 B
C#
9 lines
204 B
C#
namespace AutomobilePlantContracts.StoragesContracts
|
|
{
|
|
public interface IBackUpInfo
|
|
{
|
|
List<T>? GetList<T>() where T : class, new();
|
|
Type? GetTypeByModelInterface(string modelInterfaceName);
|
|
}
|
|
}
|