27 lines
526 B
C#
27 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.Models.ProModelPars
|
|
{
|
|
/// <summary>
|
|
/// 下载时用的Limit
|
|
/// 进制和精度也需要处理好
|
|
/// </summary>
|
|
public class Limit
|
|
{
|
|
/// <summary>
|
|
/// Limit-Up
|
|
/// </summary>
|
|
public short Up { get; set; }
|
|
|
|
/// <summary>
|
|
/// Limit-Down
|
|
/// </summary>
|
|
public short Down { get; set; }
|
|
|
|
}
|
|
}
|