using System; using System.Collections.Generic; using System.Linq; using System.Text; using IStation.Bimface; namespace IStation.Model.Bimface { /// /// Bimface自定义关键帧 /// public class CustomKeyFrame:CustomLayer { /// /// 暂停时间(秒) /// public uint PauseTime { get; set; } /// /// 关键帧 /// public KeyFrame KeyFrame { get; set; } } }