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