This commit is contained in:
tanglong 2025-10-14 13:51:07 +08:00
commit 72bf221637

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