Uno.WindowsCommunityToolkit/CommunityToolkit.WinUI.Inpu.../GazeHistoryItem.cs

17 строки
476 B
C#

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace CommunityToolkit.WinUI.Input.GazeInteraction
{
internal struct GazeHistoryItem
{
public GazeTargetItem HitTarget { get; set; }
public TimeSpan Timestamp { get; set; }
public TimeSpan Duration { get; set; }
}
}