Files
SPT-Server-Build/Core/Models/Spt/Callbacks/NoteCallbacks.cs
T
2025-01-06 18:22:04 +00:00

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();
}
}