15 lines
321 B
C#
15 lines
321 B
C#
using Core.Models.Spt.Logging;
|
|
|
|
namespace Core.Controllers;
|
|
|
|
public class ClientLogController
|
|
{
|
|
/// <summary>
|
|
/// Handle /singleplayer/log
|
|
/// </summary>
|
|
/// <param name="logRequest"></param>
|
|
public void ClientLog(ClientLogRequest logRequest)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |