More controller prototypes

This commit is contained in:
Cj
2025-01-06 22:58:14 -05:00
parent 7b752970ff
commit 51bdca38fa
7 changed files with 265 additions and 7 deletions
+46 -1
View File
@@ -1,6 +1,51 @@
using Core.Models.Eft.Common;
namespace Core.Controllers;
public class NoteController
{
// TODO
/// <summary>
///
/// </summary>
/// <param name="pmcData"></param>
/// <param name="body"></param>
/// <param name="sessionId"></param>
/// <returns></returns>
public ItemEventRouterResponse AddNote(
PmcData pmcData,
NoteActionBody body,
string sessionId)
{
throw new NotImplementedException();
}
/// <summary>
///
/// </summary>
/// <param name="pmcData"></param>
/// <param name="body"></param>
/// <param name="sessionId"></param>
/// <returns></returns>
public ItemEventRouterResponse EditNote(
PmcData pmcData,
NoteActionBody body,
string sessionId)
{
throw new NotImplementedException();
}
/// <summary>
///
/// </summary>
/// <param name="pmcData"></param>
/// <param name="body"></param>
/// <param name="sessionId"></param>
/// <returns></returns>
public ItemEventRouterResponse DeleteNote(
PmcData pmcData,
NoteActionBody body,
string sessionId)
{
throw new NotImplementedException();
}
}