YD_SmartSports.Api/VOL.Model/Norm/Response/StatisticInfoModel.cs
2025-06-06 16:00:39 +08:00

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; }
}
}