Files
WorkFlowCheck/src/WorkFlowCheck.BL/Services/Interfaces/ISystemService.cs
T
2025-04-14 12:31:50 +02:00

14 lines
274 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.BL.Services.Interfaces
{
public interface ISystemService
{
Task<string> GetDatabaseAndVersionInfoAsync();
}
}