using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.RemoteDesktop { /// /// Represents an result. /// /// The type of the frame. public class BitmapComparerResult where TFrame : IFrame { /// /// Gets or sets the difference frame. /// public TFrame Frame { get; set; } /// /// Gets or sets the number of differences. /// public uint DifferenceCount { get; set; } } }