Add listview group expander

This commit is contained in:
Иван Ивашкин
2024-10-26 22:43:27 +05:00
parent 11ac7c7c48
commit 8510db1a85
7 changed files with 61 additions and 12 deletions

View File

@@ -12,7 +12,10 @@ namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IOneVariableFunction : ICloneable, ISaveable
{
public const string GROUP_TYPE_1 = "System function";
public const string GROUP_TYPE_2 = "User function";
public bool IsUser { get; set; }
public string Group { get; set; }
public FunctionType Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }