10 lines
211 B
C#
10 lines
211 B
C#
using SoftwareInstallationContracts.BindingModels;
|
|
|
|
namespace SoftwareInstallationContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IBackUpLogic
|
|
{
|
|
void CreateBackUp(BackUpSaveBinidngModel model);
|
|
}
|
|
}
|