PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/StoragesContracts/IBackUpInfo.cs

11 lines
199 B
C#
Raw Normal View History

2024-05-17 13:28:57 +04:00
namespace GiftShopContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}