Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IDelayedAction.cs
1using System;
2using System.Threading.Tasks;
3
4namespace LegalLab.Models
5{
9 public interface IDelayedAction
10 {
14 DateTime ScheduledFor
15 {
16 get;
17 set;
18 }
19
23 Task Action();
24 }
25}