KoogleV4/KoogleCli/Model/Option.cs

17 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KoogleCli.Model
{
internal record Option(string Name,Action Action)
{
public override string ToString()
{
return Name;
}
}
}