Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObservableTaskCommandAttribute.cs
1using System;
2
4{
5 [AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
6 public sealed class ObservableTaskCommandAttribute(
7 ObservableTaskCommandOptions options = ObservableTaskCommandOptions.None)
8 : Attribute
9 {
13 public ObservableTaskCommandOptions Options { get; } = options;
14 }
15}