docs: add tasks

This commit is contained in:
semenov
2026-01-12 10:30:31 +03:00
parent 90a25f6163
commit c3298613c2
2 changed files with 22 additions and 0 deletions

View File

@@ -11,3 +11,15 @@ RecognizeSystem - система распознавания типа пакет
ProcessingSystem - система активации процессов (создает результат после распознания действия) 1 штука на всех
/*XmlSerializer serializer = new XmlSerializer(typeof(Task));
using (StringWriter writer = new StringWriter())
{
serializer.Serialize(writer, curTask);
string xmlString = writer.ToString();
string filePath = Path.Combine(Application.dataPath, "savedTask.xml");
File.WriteAllText(filePath, xmlString);
}*/