using Core.Models.Eft.Common;
using Core.Models.Eft.ItemEvent;
using Core.Models.Eft.Notes;
namespace Core.Controllers;
public class NoteController
{
///
///
///
///
///
///
///
public ItemEventRouterResponse AddNote(
PmcData pmcData,
NoteActionData body,
string sessionId)
{
throw new NotImplementedException();
}
///
///
///
///
///
///
///
public ItemEventRouterResponse EditNote(
PmcData pmcData,
NoteActionData body,
string sessionId)
{
throw new NotImplementedException();
}
///
///
///
///
///
///
///
public ItemEventRouterResponse DeleteNote(
PmcData pmcData,
NoteActionData body,
string sessionId)
{
throw new NotImplementedException();
}
}