2023-04-24 21:25:09 +04:00

7 lines
195 B
C#

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