mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-25 17:17:15 +00:00
26 lines
555 B
C#
26 lines
555 B
C#
using Amazon;
|
|
using FikaAmazonAPI.NotificationMessages;
|
|
using FikaAmazonAPI.Parameter.Notification;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FikaAmazonAPI.SampleCode
|
|
{
|
|
public class CustomMessageReceiver : IMessageReceiver
|
|
{
|
|
|
|
public void ErrorCatch(Exception ex)
|
|
{
|
|
//Your code here
|
|
}
|
|
|
|
public void NewMessageRevicedTriger(NotificationMessageResponce message)
|
|
{
|
|
//Your Code here
|
|
}
|
|
}
|
|
}
|