11 lines
199 B
C#
11 lines
199 B
C#
|
namespace GiftShopContracts.StoragesContracts
|
|||
|
{
|
|||
|
public interface IBackUpInfo
|
|||
|
{
|
|||
|
List<T>? GetList<T>() where T : class, new();
|
|||
|
|
|||
|
Type? GetTypeByModelInterface(string modelInterfaceName);
|
|||
|
}
|
|||
|
|
|||
|
}
|