2022-01-05 19:11:58 +03:00

7 lines
123 B
C#

namespace Runtime.Controller
{
public interface ILateExecute : IController
{
void LateExecute();
}
}