Plane.Sdk3/PlaneGcsSdk.Contract_Shared/Copters/ICopterVirtualId.cs
2020-02-26 01:46:07 +08:00

30 lines
742 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace Plane.Copters
{
/// <summary>
/// 定义用于获取飞行器虚拟ID(主要用于无序摆放飞机自动按位置计算当前飞机ID)
/// </summary>
public interface ICopterVirtualId
{
/// <summary>
/// 获取自动排序生成的虚拟ID
/// </summary>
int VirtualId { get; set; }
/// <summary>
/// 是否展示虚拟ID: true:显示虚拟IDfalse显示Name
/// </summary>
bool DisplayVirtualId { get; set; }
/// <summary>
/// 是否展示ID: true:显示IDfalse显示Name
/// </summary>
bool DisplayID { get; set; }
}
}