SushiBarBase/SushiBar/SushiBarContracts/StoragesContracts/IBackUpInfo.cs

9 lines
197 B
C#
Raw Normal View History

namespace SushiBarContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}