24 lines
466 B
C#
24 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JY.Model
|
|
{
|
|
/// <summary>
|
|
/// 不良統計
|
|
/// </summary>
|
|
public class ChartDataType
|
|
{
|
|
/// <summary>
|
|
/// 數據類型
|
|
/// </summary>
|
|
public string DataType { get; set; }
|
|
/// <summary>
|
|
/// 數量
|
|
/// </summary>
|
|
public int DataCount { get; set; }
|
|
}
|
|
}
|