Files
DeedyDesigner/DeedyDesigner/Deedy.Activity/Controller/Runtime.cs

33 lines
920 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Deedy.Activity
{
public sealed class Runtime : IActivity
{
public Runtime() { }
public WorkMode WorkMode { get; internal set; } = WorkMode.Waiting;
public ExpandoMapping ExpandoMapping { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
Runtime? IActivity.Runtime => throw new NotImplementedException();
public void ReadyToEditing(Runtime runtime)
{
throw new NotImplementedException();
}
public void ReadyToRunning(Runtime runtime)
{
throw new NotImplementedException();
}
public void ReadyToWorking(IElement? parent = null, Output? output = null)
{
throw new NotImplementedException();
}
}
}