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>
|
/// 速度x
|
/// </summary>
|
[JsonProperty("speedx", NullValueHandling = NullValueHandling.Ignore)]
|
public double SpeedX { get; set; }
|
|
/// <summary>
|
/// 速度y
|
/// </summary>
|
[JsonProperty("speedy", NullValueHandling = NullValueHandling.Ignore)]
|
public double SpeedY { get; set; }
|
|
}
|
}
|