namespace VideoBrowser.Models
{
using CefSharp;
///
/// Defines the .
///
public class DownloadProcessModel
{
#region Constructors
///
/// Initializes a new instance of the class.
///
/// The item.
public DownloadProcessModel(DownloadItem item)
{
this.DownloadItem = item;
}
#endregion Constructors
#region Properties
///
/// Gets the DownloadItem.
///
internal DownloadItem DownloadItem { get; }
#endregion Properties
}
}