Files
StockInfoCoreApp/SqliteBackups/Interfaces/IBackupRoutines.cs
2021-05-09 22:10:25 +02:00

14 lines
265 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqliteBackups.Interfaces
{
public interface IBackupRoutines
{
void BackupSqliteDb(string fromDb, string toDb);
}
}