9 lines
227 B
C#
Raw Normal View History

2023-04-22 23:57:23 +04:00
namespace FurnitureAssemblyContracts.StoragesContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}