7 lines
195 B
C#
Raw Normal View History

2023-04-24 21:25:09 +04:00
namespace SushiBarContracts.StoragesContracts;
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}