annotation
This commit is contained in:
parent
d9b6062767
commit
fbba7c45b9
@ -5,7 +5,7 @@ using Tranga.TrangaTasks;
|
||||
namespace Tranga;
|
||||
|
||||
/// <summary>
|
||||
/// Stores information on Task
|
||||
/// Stores information on Task, when implementing new Tasks also update the serializer
|
||||
/// </summary>
|
||||
public abstract class TrangaTask
|
||||
{
|
||||
@ -80,6 +80,13 @@ public abstract class TrangaTask
|
||||
|
||||
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)
|
||||
{
|
||||
throw new Exception("Dont call this");
|
||||
|
Loading…
Reference in New Issue
Block a user