Sicherung

This commit is contained in:
Maier Stephan SI
2023-01-20 16:09:00 +01:00
parent e5257d8413
commit b684704bf8
139 changed files with 95678 additions and 499 deletions

View File

@@ -0,0 +1,50 @@
using System.Collections.Generic;
namespace Kalk.Core
{
public class KalkDescriptor
{
public KalkDescriptor()
{
Names = new List<string>();
Params = new List<KalkParamDescriptor>();
}
public List<string> Names { get;}
public bool IsCommand { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public List<KalkParamDescriptor> Params { get; }
public string Syntax { get; set; }
public string Returns { get; set; }
public string Remarks { get; set; }
public string Example { get; set; }
}
public class KalkParamDescriptor
{
public KalkParamDescriptor()
{
}
public KalkParamDescriptor(string name, string description)
{
Name = name;
Description = description;
}
public string Name { get; set; }
public string Description { get; set; }
public bool IsOptional { get; set; }
}
}