24 lines
495 B
C#
24 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
/// <summary>
|
|
/// 互换预付金预警设置
|
|
/// </summary>
|
|
public class SwapMonitorConfig
|
|
{
|
|
/// <summary>
|
|
/// 预警线
|
|
/// </summary>
|
|
public double WarningLine { get; set; }
|
|
/// <summary>
|
|
/// 平仓线
|
|
/// </summary>
|
|
public double UnwindLine { get; set; }
|
|
}
|
|
}
|