mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboExperiments.git
synced 2026-06-16 13:16:37 +00:00
7 lines
165 B
C#
7 lines
165 B
C#
|
|
namespace Jibo.Runtime.Abstractions;
|
|||
|
|
|
|||
|
|
public abstract class PlanAction
|
|||
|
|
{
|
|||
|
|
public abstract PlanActionType Type { get; }
|
|||
|
|
public int Sequence { get; init; }
|
|||
|
|
}
|