10 lines
139 B
C#
10 lines
139 B
C#
using System.Dynamic;
|
|
|
|
namespace Tello_Drone
|
|
{
|
|
public interface IDroneFactory
|
|
{
|
|
Drone CreateDrone { get; }
|
|
|
|
}
|
|
} |