Files
podnoms/server/Services/Jobs/INotifyJobCompleteService.cs
2018-03-27 17:15:07 +01:00

7 lines
206 B
C#

using System.Threading.Tasks;
namespace PodNoms.Api.Services.Jobs {
public interface INotifyJobCompleteService {
Task NotifyUser(string userId, string title, string body, string image);
}
}