mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-07 08:15:02 +00:00
7 lines
206 B
C#
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);
|
|
}
|
|
} |