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