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