init: 导入项目到 meswork Gitea

This commit is contained in:
XingCheng3
2026-05-29 10:07:05 +08:00
commit ad9a4106fb
3582 changed files with 460312 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
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; }
}