Implemented Strategy Pattern
This commit is contained in:
17
Tello Drone/TestNameAttributes.cs
Normal file
17
Tello Drone/TestNameAttributes.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user