1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 02:01:45 +02:00
GiantsTools/Giants.Services/Services/ICrashReportService.cs
2020-08-31 22:46:07 -07:00

11 lines
235 B
C#

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