using System.Collections.Generic; namespace Kalk.Core { public class KalkDescriptor { public KalkDescriptor() { Names = new List(); Params = new List(); } public List Names { get;} public bool IsCommand { get; set; } public string Category { get; set; } public string Description { get; set; } public List 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; } } }