annotation

This commit is contained in:
glax 2023-05-31 21:44:16 +02:00
parent d9b6062767
commit fbba7c45b9

View File

@ -5,7 +5,7 @@ using Tranga.TrangaTasks;
namespace Tranga; namespace Tranga;
/// <summary> /// <summary>
/// Stores information on Task /// Stores information on Task, when implementing new Tasks also update the serializer
/// </summary> /// </summary>
public abstract class TrangaTask public abstract class TrangaTask
{ {
@ -80,6 +80,13 @@ public abstract class TrangaTask
public override bool CanWrite => false; public override bool CanWrite => false;
/// <summary>
/// Don't call this
/// </summary>
/// <param name="writer"></param>
/// <param name="value"></param>
/// <param name="serializer"></param>
/// <exception cref="Exception"></exception>
public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer) public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
{ {
throw new Exception("Dont call this"); throw new Exception("Dont call this");