// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The Progress of a File Download
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Model
{
using System;
///
/// The Progress of a File Download
///
public class DownloadStatus
{
///
/// Gets or sets BytesRead.
///
public long BytesRead { get; set; }
///
/// Gets or sets TotalBytes.
///
public long TotalBytes { get; set; }
///
/// Gets or sets a value indicating whether WasSuccessful.
///
public bool WasSuccessful { get; set; }
///
/// Gets or sets Exception.
///
public Exception Exception { get; set; }
///
/// Gets or sets Message.
///
public string Message { get; set; }
///
/// Gets or sets FilePath.
///
public string FilePath { get; set; }
}
}