1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-30 02:42:12 +02:00
GiantsTools/Giants.Services/Services/ICrashReportService.cs

11 lines
235 B
C#
Raw Normal View History

namespace Giants.Services.Services
{
using System.IO;
using System.Threading.Tasks;
public interface ICrashReportService
{
Task ProcessReport(string fileName, string senderIpAddress, Stream stream);
}
}