10 lines
211 B
C#
Raw Permalink Normal View History

2024-06-17 19:27:42 +04:00
using SoftwareInstallationContracts.BindingModels;
namespace SoftwareInstallationContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}