using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.RemoteDesktop
{
/// <summary>
/// Represents an <see cref="IBitmapComparer{TFrame}.CreateDifference(System.Drawing.Bitmap, System.Drawing.Bitmap)"/> result.
/// </summary>
/// <typeparam name="TFrame">The type of the frame.</typeparam>
public class BitmapComparerResult<TFrame> where TFrame : IFrame
{
/// <summary>
/// Gets or sets the difference frame.
/// </summary>
public TFrame Frame { get; set; }
/// <summary>
/// Gets or sets the number of differences.
/// </summary>
public uint DifferenceCount { get;