namespace SecuritySystemContracts.StoragesContracts { public interface IBackUpInfoStorage { List? GetList() where T : class, new(); Type? GetTypeByModelInterface(string modelInterfaceName); } }