11 lines
259 B
C#
11 lines
259 B
C#
![]() |
namespace Yunda.ISAS.DataMonitoringServer.DataAnalysis.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 测温点坐标结构
|
|||
|
/// </summary>
|
|||
|
public class MeasureTempCoordinate
|
|||
|
{
|
|||
|
public float X { get; set; }
|
|||
|
public float Y { get; set; }
|
|||
|
}
|
|||
|
}
|