From 7528e9ebe55998dca172cb96c20e902614c13628 Mon Sep 17 00:00:00 2001 From: tanglong <842690096@qq.com> Date: Tue, 14 Oct 2025 07:44:18 +0800 Subject: [PATCH] tijiao --- .../Dto/GroupJumpRopeContext.cs | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Wpf_AiSportsMicrospace/Dto/GroupJumpRopeContext.cs diff --git a/Wpf_AiSportsMicrospace/Dto/GroupJumpRopeContext.cs b/Wpf_AiSportsMicrospace/Dto/GroupJumpRopeContext.cs new file mode 100644 index 0000000..686d3c4 --- /dev/null +++ b/Wpf_AiSportsMicrospace/Dto/GroupJumpRopeContext.cs @@ -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; + } +}