Upload files to 'ShipyardContracts/StorageContracts'

This commit is contained in:
Ivan_Starostin 2024-06-21 21:48:44 +04:00
parent 18fe17e705
commit 789d3b3627

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShipyardContracts.StorageContracts
{
public interface IBackUpInfo
{
List<T>? GetList<T>() where T : class, new();
Type? GetTypeByModelInterface(string modelInterfaceName);
}
}