32 lines
707 B
C#
Raw Normal View History

2025-06-06 14:57:20 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.ClientSide
{
/// <summary>
/// 获取地区和跳绳时长
/// </summary>
public class AreaCategoryDto
{
/// <summary>
/// 区域编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 地区
/// </summary>
public string Area { get; set; }
/// <summary>
/// 时长
/// </summary>
public int Duration { get; set; }
}
}