25 lines
473 B
C#
25 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.Model.Norm.Response
|
|
{
|
|
/// <summary>
|
|
/// 统计类型
|
|
/// </summary>
|
|
public class StatisticInfoModel
|
|
{
|
|
/// <summary>
|
|
/// 枚举值
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|
|
}
|