10 lines
175 B
C#
10 lines
175 B
C#
using DryIoc;
|
|
|
|
namespace Tello_Drone
|
|
{
|
|
public interface IDroneConstants
|
|
{
|
|
string DroneIPAddress { get; set; }
|
|
int DronePortNumber { get; set; }
|
|
}
|
|
} |