Files
rssotto-csharp-client/ModVersionChecker/service/interfaces/IVersionService.cs
Jose Conde 5e16f781b4 phase 1
2025-09-29 16:02:00 +02:00

16 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ModVersionChecker.service.interfaces
{
public interface IVersionService
{
App CheckApp(App app);
Task CheckAllApps();
}
}