Files
01-Siyuan-MesProject/DataMirrorTools_Simulator/Foundation/Base.Class/ActPlayModelVisibleAndRotation.cs
2026-05-29 10:07:05 +08:00

45 lines
962 B
C#

using System;
/// <summary>
/// 承载类
/// 模型显示隐藏自转
/// 2021.1.15
/// </summary>
[Serializable]
public class ActPlayModelVisibleAndRotation
{
/// <summary>
/// CraftDeviceTypeCode
/// </summary>
public int CraftDeviceTypeCode { get; set; }
/// <summary>
/// CraftCade
/// </summary>
public string CraftCade { get; set; }
/// <summary>
/// CraftName
/// </summary>
public string CraftName { get; set; }
/// <summary>
/// StartTime
/// </summary>
public int StartTime { get; set; }
/// <summary>
/// KeepTime
/// </summary>
public int KeepTime { get; set; }
/// <summary>
/// StartFrame
/// </summary>
public int StartFrame { get; set; }
/// <summary>
/// OperationValue
/// </summary>
public string OperationValue { get; set; }
/// <summary>
/// ModelCode
/// </summary>
public string ModelCode { get; set; }
}