This commit is contained in:
tanglong 2025-10-14 07:44:18 +08:00
parent 694b046e50
commit 7528e9ebe5

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
using Yztob.AiSports.Postures.Sports;
namespace Dto
{
public class GroupJumpRopeContext
{
public int Index { get; set; }
public Point NormalizedPosition { get; set; }
public SportBase Sport { get; set; }
public UserItem User { get; set; }
public string LastNumberText { get; set; } = "";
public DateTime LastJumpTime { get; set; } = DateTime.MinValue;
public DateTime LastUIUpdateTime { get; set; } = DateTime.MinValue;
}
}