diff --git a/ShipyardContracts/StorageContracts/IBackUpInfo.cs b/ShipyardContracts/StorageContracts/IBackUpInfo.cs new file mode 100644 index 0000000..10bc1bc --- /dev/null +++ b/ShipyardContracts/StorageContracts/IBackUpInfo.cs @@ -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? GetList() where T : class, new(); + Type? GetTypeByModelInterface(string modelInterfaceName); + } +}