using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShakerApp.Models
{
///
/// 波形数据类型
///
internal enum DataAxisType
{
///
/// 线性
///
[Description("Linear")]
Linear,
///
/// 对数
///
[Description("Logarithm")]
Logarithm,
}
}