diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/TelemetryNameAttribute.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Telemetry/TelemetryNameAttribute.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/TelemetryNameAttribute.cs b/Software/Visual_Studio/Tango.Telemetry/TelemetryNameAttribute.cs new file mode 100644 index 000000000..f6adb2d61 --- /dev/null +++ b/Software/Visual_Studio/Tango.Telemetry/TelemetryNameAttribute.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.Telemetry +{ + public class TelemetryNameAttribute : Attribute + { + public String Name { get; set; } + + public TelemetryNameAttribute(String name) + { + Name = name; + } + } +} |
