19 lines
545 B
C#
19 lines
545 B
C#
namespace Core.Models.Spt.Callbacks;
|
|
|
|
public class NoteCallbacks
|
|
{
|
|
public ItemEventRouterResponse AddNote(PmcData pmcData, NoteActionData info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ItemEventRouterResponse EditNote(PmcData pmcData, NoteActionData info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ItemEventRouterResponse DeleteNote(PmcData pmcData, NoteActionData info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |