Files
tello_drone/Tello Drone/TestNameAttributes.cs
2019-09-11 15:53:52 -06:00

17 lines
332 B
C#

using System;
using System.Dynamic;
using System.Security.Cryptography;
namespace Tello_Drone
{
[AttributeUsage(AttributeTargets.Class)]
public class TestNameAttributes : Attribute
{
public TestNameAttributes(string name)
{
Name = name;
}
public string Name { get; }
}
}