namespace Yw.WinFrmUI.Bimface
|
{
|
/// <summary>
|
/// 业务流向动画
|
/// </summary>
|
public class LogicFlowEffect
|
{
|
/// <summary>
|
/// 编码
|
/// </summary>
|
[JsonProperty("id", NullValueHandling = NullValueHandling.Ignore)]
|
public string Id { get; set; }
|
|
/// <summary>
|
/// 旋转角度
|
/// </summary>
|
[JsonProperty("rotation", NullValueHandling = NullValueHandling.Ignore)]
|
public int Rotation { get; set; }
|
|
/// <summary>
|
/// 方向
|
/// </summary>
|
[JsonProperty("direction", NullValueHandling = NullValueHandling.Ignore)]
|
public bool Direction { get; set; }
|
|
/// <summary>
|
/// 速度
|
/// </summary>
|
[JsonProperty("speed", NullValueHandling = NullValueHandling.Ignore)]
|
public double Speed { get; set; }
|
|
|
}
|
}
|